mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Updated comment in headers.
This commit is contained in:
parent
b22786bd55
commit
0f8c0cd694
29 changed files with 30 additions and 30 deletions
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2022 - 2023 grunfink (Fediverse: @grunfink@comam.es)
|
||||
Copyright (c) 2022 - 2023 grunfink et al. (Fediverse: @grunfink@comam.es)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
|
|
|
@ -83,6 +83,6 @@ See the LICENSE file for details.
|
|||
|
||||
## Author
|
||||
|
||||
grunfink [@grunfink@comam.es](https://comam.es/snac/grunfink)
|
||||
grunfink [@grunfink@comam.es](https://comam.es/snac/grunfink) with the help of others.
|
||||
|
||||
Buy grunfink a coffee: https://ko-fi.com/grunfink
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#include "xs.h"
|
||||
#include "xs_json.h"
|
||||
|
|
2
data.c
2
data.c
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#include "xs.h"
|
||||
#include "xs_io.h"
|
||||
|
|
2
format.c
2
format.c
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#include "xs.h"
|
||||
#include "xs_regex.h"
|
||||
|
|
2
html.c
2
html.c
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#include "xs.h"
|
||||
#include "xs_io.h"
|
||||
|
|
2
http.c
2
http.c
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#include "xs.h"
|
||||
#include "xs_io.h"
|
||||
|
|
2
httpd.c
2
httpd.c
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#include "xs.h"
|
||||
#include "xs_io.h"
|
||||
|
|
4
main.c
4
main.c
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#include "xs.h"
|
||||
#include "xs_io.h"
|
||||
|
@ -12,7 +12,7 @@
|
|||
int usage(void)
|
||||
{
|
||||
printf("snac " VERSION " - A simple, minimalistic ActivityPub instance\n");
|
||||
printf("Copyright (c) 2022 - 2023 grunfink / MIT license\n");
|
||||
printf("Copyright (c) 2022 - 2023 grunfink et al. / MIT license\n");
|
||||
printf("\n");
|
||||
printf("Commands:\n");
|
||||
printf("\n");
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef NO_MASTODON_API
|
||||
|
||||
|
|
2
snac.c
2
snac.c
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#define XS_IMPLEMENTATION
|
||||
|
||||
|
|
2
snac.h
2
snac.h
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#define VERSION "2.38"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#include "xs.h"
|
||||
#include "xs_io.h"
|
||||
|
|
2
utils.c
2
utils.c
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#include "xs.h"
|
||||
#include "xs_io.h"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* snac - A simple, minimalistic ActivityPub instance */
|
||||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#include "xs.h"
|
||||
#include "xs_json.h"
|
||||
|
|
2
xs.h
2
xs.h
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_H
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_CURL_H
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_GLOB_H
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_HTTPD_H
|
||||
|
||||
|
|
2
xs_io.h
2
xs_io.h
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_IO_H
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_JSON_H
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_MIME
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_OPENSSL_H
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_RANDOM_H
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_REGEX_H
|
||||
|
||||
|
|
2
xs_set.h
2
xs_set.h
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_SET_H
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_SOCKET_H
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_TIME_H
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* copyright (c) 2022 - 2023 grunfink / MIT license */
|
||||
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
|
||||
|
||||
#ifndef _XS_UNICODE_H
|
||||
|
||||
|
|
Loading…
Reference in a new issue