Updated copyright year.

This commit is contained in:
default 2024-01-04 09:22:03 +01:00
parent 26d277a8c5
commit 755d997fb1
34 changed files with 35 additions and 35 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2022 - 2023 grunfink et al. (Fediverse: @grunfink@comam.es)
Copyright (c) 2022 - 2024 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:

View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#include "xs.h"
#include "xs_json.h"

2
data.c
View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#include "xs.h"
#include "xs_hex.h"

View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#include "xs.h"
#include "xs_regex.h"

2
html.c
View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#include "xs.h"
#include "xs_io.h"

2
http.c
View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#include "xs.h"
#include "xs_io.h"

View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#include "xs.h"
#include "xs_io.h"

4
main.c
View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 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 et al. / MIT license\n");
printf("Copyright (c) 2022 - 2024 grunfink et al. / MIT license\n");
printf("\n");
printf("Commands:\n");
printf("\n");

View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef NO_MASTODON_API

2
snac.c
View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#define XS_IMPLEMENTATION

2
snac.h
View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#define VERSION "2.44-dev"

View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#include "xs.h"
#include "xs_io.h"

View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#include "xs.h"
#include "xs_io.h"

View File

@ -1,5 +1,5 @@
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#include "xs.h"
#include "xs_json.h"

2
xs.h
View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_CURL_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
/*
This is an intentionally-dead-simple FastCGI implementation;

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_GLOB_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_HEX_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_HTML_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_HTTPD_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_IO_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_JSON_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_MATCH_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_MIME

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_OPENSSL_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_RANDOM_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_REGEX_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_SET_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_SOCKET_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_TIME_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_UNICODE_H

View File

@ -1,4 +1,4 @@
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
/* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
#ifndef _XS_URL_H

View File

@ -1 +1 @@
/* fd50c72456b717bb235eec8fe5f712da5f695f2b 2023-12-27T12:51:14+01:00 */
/* 3e906b28aaa910cd79dd5eb1d88fda82201d28de 2024-01-04T09:20:12+01:00 */