From 31c9bc7f1c996946b0dd3268c675eaba29846935 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sat, 13 Jan 2024 17:56:58 -0500 Subject: [PATCH] Update Cytoplasm license text for 2024. --- LICENSE.txt | 2 +- examples/PrintArgsAndEnv.c | 2 +- src/Args.c | 2 +- src/Array.c | 2 +- src/Base64.c | 2 +- src/Cron.c | 2 +- src/Cytoplasm.c | 2 +- src/Db.c | 2 +- src/Graph.c | 2 +- src/HashMap.c | 2 +- src/HeaderParser.c | 2 +- src/Http.c | 2 +- src/HttpClient.c | 2 +- src/HttpRouter.c | 2 +- src/HttpServer.c | 2 +- src/Io.c | 2 +- src/Io/IoFd.c | 2 +- src/Io/IoFile.c | 2 +- src/Json.c | 2 +- src/Log.c | 2 +- src/Memory.c | 2 +- src/Queue.c | 2 +- src/Rand.c | 2 +- src/RtStub.c | 2 +- src/Runtime.c | 2 +- src/Sha.c | 2 +- src/Sha/Sha1.c | 2 +- src/Sha/Sha256.c | 2 +- src/Str.c | 2 +- src/Stream.c | 2 +- src/Tls.c | 2 +- src/Tls/TlsLibreSSL.c | 2 +- src/Tls/TlsOpenSSL.c | 2 +- src/Uri.c | 2 +- src/Util.c | 2 +- src/include/Args.h | 2 +- src/include/Array.h | 2 +- src/include/Base64.h | 2 +- src/include/Cron.h | 2 +- src/include/Cytoplasm.h | 2 +- src/include/Db.h | 2 +- src/include/Graph.h | 2 +- src/include/HashMap.h | 2 +- src/include/HeaderParser.h | 2 +- src/include/Http.h | 2 +- src/include/HttpClient.h | 2 +- src/include/HttpRouter.h | 2 +- src/include/HttpServer.h | 2 +- src/include/Io.h | 2 +- src/include/Json.h | 2 +- src/include/Log.h | 2 +- src/include/Memory.h | 2 +- src/include/Queue.h | 2 +- src/include/Rand.h | 2 +- src/include/Runtime.h | 2 +- src/include/Sha.h | 2 +- src/include/Str.h | 2 +- src/include/Stream.h | 2 +- src/include/Tls.h | 2 +- src/include/Uri.h | 2 +- src/include/Util.h | 2 +- tools/hdoc.c | 2 +- tools/http.c | 2 +- tools/j2s.c | 2 +- tools/tp.c | 2 +- 65 files changed, 65 insertions(+), 65 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 90f6e6d..65961c2 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/examples/PrintArgsAndEnv.c b/examples/PrintArgsAndEnv.c index 1b58108..ce3f74a 100644 --- a/examples/PrintArgsAndEnv.c +++ b/examples/PrintArgsAndEnv.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Args.c b/src/Args.c index c9f3000..d25077f 100644 --- a/src/Args.c +++ b/src/Args.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Array.c b/src/Array.c index d16db3f..c2af556 100644 --- a/src/Array.c +++ b/src/Array.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Base64.c b/src/Base64.c index ec81935..13c117b 100644 --- a/src/Base64.c +++ b/src/Base64.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Cron.c b/src/Cron.c index dd820ba..396d36b 100644 --- a/src/Cron.c +++ b/src/Cron.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Cytoplasm.c b/src/Cytoplasm.c index 8c435c4..d3e2d0b 100644 --- a/src/Cytoplasm.c +++ b/src/Cytoplasm.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Db.c b/src/Db.c index 4d2983a..22456ac 100644 --- a/src/Db.c +++ b/src/Db.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Graph.c b/src/Graph.c index a4d63ed..8e583d1 100644 --- a/src/Graph.c +++ b/src/Graph.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/HashMap.c b/src/HashMap.c index d158b3f..32a3199 100644 --- a/src/HashMap.c +++ b/src/HashMap.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/HeaderParser.c b/src/HeaderParser.c index e08af75..1915dc6 100644 --- a/src/HeaderParser.c +++ b/src/HeaderParser.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Http.c b/src/Http.c index cab1220..3572c66 100644 --- a/src/Http.c +++ b/src/Http.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/HttpClient.c b/src/HttpClient.c index 88d7179..3d9f075 100644 --- a/src/HttpClient.c +++ b/src/HttpClient.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/HttpRouter.c b/src/HttpRouter.c index 7777fcd..20070af 100644 --- a/src/HttpRouter.c +++ b/src/HttpRouter.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/HttpServer.c b/src/HttpServer.c index b2a9535..8ed5a66 100644 --- a/src/HttpServer.c +++ b/src/HttpServer.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Io.c b/src/Io.c index 54d250c..3e30444 100644 --- a/src/Io.c +++ b/src/Io.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Io/IoFd.c b/src/Io/IoFd.c index eaa1539..5abad5e 100644 --- a/src/Io/IoFd.c +++ b/src/Io/IoFd.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Io/IoFile.c b/src/Io/IoFile.c index cdd40ab..d55686a 100644 --- a/src/Io/IoFile.c +++ b/src/Io/IoFile.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Json.c b/src/Json.c index 3ff9880..872c266 100644 --- a/src/Json.c +++ b/src/Json.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Log.c b/src/Log.c index d5a5799..ada86a4 100644 --- a/src/Log.c +++ b/src/Log.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Memory.c b/src/Memory.c index 134505c..4083143 100644 --- a/src/Memory.c +++ b/src/Memory.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Queue.c b/src/Queue.c index db228d1..11e1ad5 100644 --- a/src/Queue.c +++ b/src/Queue.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Rand.c b/src/Rand.c index 3ece67a..f9cf6fc 100644 --- a/src/Rand.c +++ b/src/Rand.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/RtStub.c b/src/RtStub.c index dd0ed12..a09527f 100644 --- a/src/RtStub.c +++ b/src/RtStub.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Runtime.c b/src/Runtime.c index 9a69875..56d8e4d 100644 --- a/src/Runtime.c +++ b/src/Runtime.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Sha.c b/src/Sha.c index 1cfe502..377ae14 100644 --- a/src/Sha.c +++ b/src/Sha.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Sha/Sha1.c b/src/Sha/Sha1.c index edd250f..9e12d56 100644 --- a/src/Sha/Sha1.c +++ b/src/Sha/Sha1.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Sha/Sha256.c b/src/Sha/Sha256.c index 82ea046..2563246 100644 --- a/src/Sha/Sha256.c +++ b/src/Sha/Sha256.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Str.c b/src/Str.c index bcbb63d..fa8391c 100644 --- a/src/Str.c +++ b/src/Str.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Stream.c b/src/Stream.c index 539ec20..63bc3d5 100644 --- a/src/Stream.c +++ b/src/Stream.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Tls.c b/src/Tls.c index d3ad08f..659cba6 100644 --- a/src/Tls.c +++ b/src/Tls.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Tls/TlsLibreSSL.c b/src/Tls/TlsLibreSSL.c index 27b9fa7..dc09b11 100644 --- a/src/Tls/TlsLibreSSL.c +++ b/src/Tls/TlsLibreSSL.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Tls/TlsOpenSSL.c b/src/Tls/TlsOpenSSL.c index cd6a635..c056ebc 100644 --- a/src/Tls/TlsOpenSSL.c +++ b/src/Tls/TlsOpenSSL.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Uri.c b/src/Uri.c index ca1ad96..1e88a7d 100644 --- a/src/Uri.c +++ b/src/Uri.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Util.c b/src/Util.c index 6701eb7..962ff0b 100644 --- a/src/Util.c +++ b/src/Util.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Args.h b/src/include/Args.h index 2161c1b..f6d0dff 100644 --- a/src/include/Args.h +++ b/src/include/Args.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Array.h b/src/include/Array.h index 0705b2b..65affeb 100644 --- a/src/include/Array.h +++ b/src/include/Array.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Base64.h b/src/include/Base64.h index 74c8956..2279a1b 100644 --- a/src/include/Base64.h +++ b/src/include/Base64.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Cron.h b/src/include/Cron.h index 00280cc..0963395 100644 --- a/src/include/Cron.h +++ b/src/include/Cron.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Cytoplasm.h b/src/include/Cytoplasm.h index 97a4a54..0119e06 100644 --- a/src/include/Cytoplasm.h +++ b/src/include/Cytoplasm.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Db.h b/src/include/Db.h index 9aa0758..f4c41d2 100644 --- a/src/include/Db.h +++ b/src/include/Db.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Graph.h b/src/include/Graph.h index 02e4e02..f9a4c55 100644 --- a/src/include/Graph.h +++ b/src/include/Graph.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/HashMap.h b/src/include/HashMap.h index 716dacc..a808494 100644 --- a/src/include/HashMap.h +++ b/src/include/HashMap.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/HeaderParser.h b/src/include/HeaderParser.h index 52d8e33..5959c68 100644 --- a/src/include/HeaderParser.h +++ b/src/include/HeaderParser.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Http.h b/src/include/Http.h index 37875d8..fb50169 100644 --- a/src/include/Http.h +++ b/src/include/Http.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/HttpClient.h b/src/include/HttpClient.h index 28fe3c2..ea151b4 100644 --- a/src/include/HttpClient.h +++ b/src/include/HttpClient.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/HttpRouter.h b/src/include/HttpRouter.h index 2df3db7..130f2a4 100644 --- a/src/include/HttpRouter.h +++ b/src/include/HttpRouter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/HttpServer.h b/src/include/HttpServer.h index c539ac7..ee09064 100644 --- a/src/include/HttpServer.h +++ b/src/include/HttpServer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Io.h b/src/include/Io.h index 06afb77..09c400f 100644 --- a/src/include/Io.h +++ b/src/include/Io.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Json.h b/src/include/Json.h index e74c77d..261aced 100644 --- a/src/include/Json.h +++ b/src/include/Json.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Log.h b/src/include/Log.h index 1567b6e..0074dae 100644 --- a/src/include/Log.h +++ b/src/include/Log.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Memory.h b/src/include/Memory.h index d6836ee..80c37d8 100644 --- a/src/include/Memory.h +++ b/src/include/Memory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Queue.h b/src/include/Queue.h index 1c148b7..60a03f3 100644 --- a/src/include/Queue.h +++ b/src/include/Queue.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Rand.h b/src/include/Rand.h index 69fdb7f..cb7713e 100644 --- a/src/include/Rand.h +++ b/src/include/Rand.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Runtime.h b/src/include/Runtime.h index f23a1ba..c486e04 100644 --- a/src/include/Runtime.h +++ b/src/include/Runtime.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Sha.h b/src/include/Sha.h index 25b6247..a23ef35 100644 --- a/src/include/Sha.h +++ b/src/include/Sha.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Str.h b/src/include/Str.h index 87bc92b..35842e8 100644 --- a/src/include/Str.h +++ b/src/include/Str.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Stream.h b/src/include/Stream.h index a62a033..1bb30bb 100644 --- a/src/include/Stream.h +++ b/src/include/Stream.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Tls.h b/src/include/Tls.h index 8314f7d..047ffbd 100644 --- a/src/include/Tls.h +++ b/src/include/Tls.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Uri.h b/src/include/Uri.h index a47bf28..7c55d75 100644 --- a/src/include/Uri.h +++ b/src/include/Uri.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Util.h b/src/include/Util.h index feafcff..4e2db90 100644 --- a/src/include/Util.h +++ b/src/include/Util.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/tools/hdoc.c b/tools/hdoc.c index 1d1bbaa..e905c0c 100644 --- a/tools/hdoc.c +++ b/tools/hdoc.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/tools/http.c b/tools/http.c index 0b32b74..a2b97bb 100644 --- a/tools/http.c +++ b/tools/http.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/tools/j2s.c b/tools/j2s.c index 57a8b6e..dc33c9a 100644 --- a/tools/j2s.c +++ b/tools/j2s.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/tools/tp.c b/tools/tp.c index 3be903e..f178948 100644 --- a/tools/tp.c +++ b/tools/tp.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files