summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2023-07-28 11:34:18 +0200
committerGravatar default2023-07-28 11:34:18 +0200
commit0f8c0cd6943992e44a1454ed6c8bdeef0faee722 (patch)
treedd440d88dcba5af60881ebbdf26dc9784c8f70ba
parentMerge pull request 'html.c: Fix non-list tag object for external custom emoji... (diff)
downloadpenes-snac2-0f8c0cd6943992e44a1454ed6c8bdeef0faee722.tar.gz
penes-snac2-0f8c0cd6943992e44a1454ed6c8bdeef0faee722.tar.xz
penes-snac2-0f8c0cd6943992e44a1454ed6c8bdeef0faee722.zip
Updated comment in headers.
-rw-r--r--LICENSE2
-rw-r--r--README.md2
-rw-r--r--activitypub.c2
-rw-r--r--data.c2
-rw-r--r--format.c2
-rw-r--r--html.c2
-rw-r--r--http.c2
-rw-r--r--httpd.c2
-rw-r--r--main.c4
-rw-r--r--mastoapi.c2
-rw-r--r--snac.c2
-rw-r--r--snac.h2
-rw-r--r--upgrade.c2
-rw-r--r--utils.c2
-rw-r--r--webfinger.c2
-rw-r--r--xs.h2
-rw-r--r--xs_curl.h2
-rw-r--r--xs_glob.h2
-rw-r--r--xs_httpd.h2
-rw-r--r--xs_io.h2
-rw-r--r--xs_json.h2
-rw-r--r--xs_mime.h2
-rw-r--r--xs_openssl.h2
-rw-r--r--xs_random.h2
-rw-r--r--xs_regex.h2
-rw-r--r--xs_set.h2
-rw-r--r--xs_socket.h2
-rw-r--r--xs_time.h2
-rw-r--r--xs_unicode.h2
29 files changed, 30 insertions, 30 deletions
diff --git a/LICENSE b/LICENSE
index 3f316ff..1b0855e 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
1MIT License 1MIT License
2 2
3Copyright (c) 2022 - 2023 grunfink (Fediverse: @grunfink@comam.es) 3Copyright (c) 2022 - 2023 grunfink et al. (Fediverse: @grunfink@comam.es)
4 4
5Permission 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: 5Permission 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:
6 6
diff --git a/README.md b/README.md
index 659beaa..825296c 100644
--- a/README.md
+++ b/README.md
@@ -83,6 +83,6 @@ See the LICENSE file for details.
83 83
84## Author 84## Author
85 85
86grunfink [@grunfink@comam.es](https://comam.es/snac/grunfink) 86grunfink [@grunfink@comam.es](https://comam.es/snac/grunfink) with the help of others.
87 87
88Buy grunfink a coffee: https://ko-fi.com/grunfink 88Buy grunfink a coffee: https://ko-fi.com/grunfink
diff --git a/activitypub.c b/activitypub.c
index 36fc096..26a8347 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#include "xs.h" 4#include "xs.h"
5#include "xs_json.h" 5#include "xs_json.h"
diff --git a/data.c b/data.c
index 7463af2..62e326c 100644
--- a/data.c
+++ b/data.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#include "xs.h" 4#include "xs.h"
5#include "xs_io.h" 5#include "xs_io.h"
diff --git a/format.c b/format.c
index 71e48a1..2d09131 100644
--- a/format.c
+++ b/format.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#include "xs.h" 4#include "xs.h"
5#include "xs_regex.h" 5#include "xs_regex.h"
diff --git a/html.c b/html.c
index bf2f181..8f92d69 100644
--- a/html.c
+++ b/html.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#include "xs.h" 4#include "xs.h"
5#include "xs_io.h" 5#include "xs_io.h"
diff --git a/http.c b/http.c
index 6540dcc..28947ad 100644
--- a/http.c
+++ b/http.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#include "xs.h" 4#include "xs.h"
5#include "xs_io.h" 5#include "xs_io.h"
diff --git a/httpd.c b/httpd.c
index 9aac3b5..96cdaac 100644
--- a/httpd.c
+++ b/httpd.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#include "xs.h" 4#include "xs.h"
5#include "xs_io.h" 5#include "xs_io.h"
diff --git a/main.c b/main.c
index e1122b7..b83a66e 100644
--- a/main.c
+++ b/main.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#include "xs.h" 4#include "xs.h"
5#include "xs_io.h" 5#include "xs_io.h"
@@ -12,7 +12,7 @@
12int usage(void) 12int usage(void)
13{ 13{
14 printf("snac " VERSION " - A simple, minimalistic ActivityPub instance\n"); 14 printf("snac " VERSION " - A simple, minimalistic ActivityPub instance\n");
15 printf("Copyright (c) 2022 - 2023 grunfink / MIT license\n"); 15 printf("Copyright (c) 2022 - 2023 grunfink et al. / MIT license\n");
16 printf("\n"); 16 printf("\n");
17 printf("Commands:\n"); 17 printf("Commands:\n");
18 printf("\n"); 18 printf("\n");
diff --git a/mastoapi.c b/mastoapi.c
index 25a01f9..d851574 100644
--- a/mastoapi.c
+++ b/mastoapi.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#ifndef NO_MASTODON_API 4#ifndef NO_MASTODON_API
5 5
diff --git a/snac.c b/snac.c
index b35e645..06f7072 100644
--- a/snac.c
+++ b/snac.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#define XS_IMPLEMENTATION 4#define XS_IMPLEMENTATION
5 5
diff --git a/snac.h b/snac.h
index df13ddd..62db26c 100644
--- a/snac.h
+++ b/snac.h
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#define VERSION "2.38" 4#define VERSION "2.38"
5 5
diff --git a/upgrade.c b/upgrade.c
index a9d231c..db0f121 100644
--- a/upgrade.c
+++ b/upgrade.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#include "xs.h" 4#include "xs.h"
5#include "xs_io.h" 5#include "xs_io.h"
diff --git a/utils.c b/utils.c
index 9c510ff..1c9a5aa 100644
--- a/utils.c
+++ b/utils.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#include "xs.h" 4#include "xs.h"
5#include "xs_io.h" 5#include "xs_io.h"
diff --git a/webfinger.c b/webfinger.c
index a167cd0..9c1ac49 100644
--- a/webfinger.c
+++ b/webfinger.c
@@ -1,5 +1,5 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 - 2023 grunfink / MIT license */ 2/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
3 3
4#include "xs.h" 4#include "xs.h"
5#include "xs_json.h" 5#include "xs_json.h"
diff --git a/xs.h b/xs.h
index ad8a35d..35ddba8 100644
--- a/xs.h
+++ b/xs.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_H 3#ifndef _XS_H
4 4
diff --git a/xs_curl.h b/xs_curl.h
index d19d6e5..dbc1325 100644
--- a/xs_curl.h
+++ b/xs_curl.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_CURL_H 3#ifndef _XS_CURL_H
4 4
diff --git a/xs_glob.h b/xs_glob.h
index 2da3729..2a6785b 100644
--- a/xs_glob.h
+++ b/xs_glob.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_GLOB_H 3#ifndef _XS_GLOB_H
4 4
diff --git a/xs_httpd.h b/xs_httpd.h
index 85ab67a..0e60b64 100644
--- a/xs_httpd.h
+++ b/xs_httpd.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_HTTPD_H 3#ifndef _XS_HTTPD_H
4 4
diff --git a/xs_io.h b/xs_io.h
index f32e814..8d01178 100644
--- a/xs_io.h
+++ b/xs_io.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_IO_H 3#ifndef _XS_IO_H
4 4
diff --git a/xs_json.h b/xs_json.h
index c28f5d5..388cfe0 100644
--- a/xs_json.h
+++ b/xs_json.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_JSON_H 3#ifndef _XS_JSON_H
4 4
diff --git a/xs_mime.h b/xs_mime.h
index 788ee17..96d722b 100644
--- a/xs_mime.h
+++ b/xs_mime.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_MIME 3#ifndef _XS_MIME
4 4
diff --git a/xs_openssl.h b/xs_openssl.h
index d1a52f0..3aec3fe 100644
--- a/xs_openssl.h
+++ b/xs_openssl.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_OPENSSL_H 3#ifndef _XS_OPENSSL_H
4 4
diff --git a/xs_random.h b/xs_random.h
index 3566827..26b74fa 100644
--- a/xs_random.h
+++ b/xs_random.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_RANDOM_H 3#ifndef _XS_RANDOM_H
4 4
diff --git a/xs_regex.h b/xs_regex.h
index 79b1b3a..b86949e 100644
--- a/xs_regex.h
+++ b/xs_regex.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_REGEX_H 3#ifndef _XS_REGEX_H
4 4
diff --git a/xs_set.h b/xs_set.h
index 1857ae7..4932035 100644
--- a/xs_set.h
+++ b/xs_set.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_SET_H 3#ifndef _XS_SET_H
4 4
diff --git a/xs_socket.h b/xs_socket.h
index 870a7ec..42a2d25 100644
--- a/xs_socket.h
+++ b/xs_socket.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_SOCKET_H 3#ifndef _XS_SOCKET_H
4 4
diff --git a/xs_time.h b/xs_time.h
index d07352a..fe8638b 100644
--- a/xs_time.h
+++ b/xs_time.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_TIME_H 3#ifndef _XS_TIME_H
4 4
diff --git a/xs_unicode.h b/xs_unicode.h
index 2f081ad..d45b52e 100644
--- a/xs_unicode.h
+++ b/xs_unicode.h
@@ -1,4 +1,4 @@
1/* copyright (c) 2022 - 2023 grunfink / MIT license */ 1/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2 2
3#ifndef _XS_UNICODE_H 3#ifndef _XS_UNICODE_H
4 4