From fb6ba37ce2e7bbb91d501b57a7f421c6226f8afc Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 28 Jan 2025 12:24:02 +0900 Subject: [PATCH] Update LICENSE year in sources --- src/algorithms/linear_congruential_gen.c | 2 +- src/algorithms/linear_congruential_gen.h | 2 +- src/archiver.c | 2 +- src/archiver.h | 2 +- src/data_structures/hash_map.c | 2 +- src/data_structures/hash_map.h | 2 +- src/data_structures/linked_list.c | 2 +- src/data_structures/linked_list.h | 2 +- src/data_structures/priority_heap.c | 2 +- src/data_structures/priority_heap.h | 2 +- src/data_structures/test.c | 2 +- src/helpers.c | 2 +- src/helpers.h | 2 +- src/main.c | 2 +- src/parser.c | 2 +- src/parser.h | 2 +- src/parser_internal.h | 2 +- src/platforms.h | 2 +- src/test.c | 2 +- src/users.c | 2 +- src/users.h | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/algorithms/linear_congruential_gen.c b/src/algorithms/linear_congruential_gen.c index 3bfeb4a..bb6ce93 100644 --- a/src/algorithms/linear_congruential_gen.c +++ b/src/algorithms/linear_congruential_gen.c @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/algorithms/linear_congruential_gen.h b/src/algorithms/linear_congruential_gen.h index b97111b..8938af0 100644 --- a/src/algorithms/linear_congruential_gen.h +++ b/src/algorithms/linear_congruential_gen.h @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/archiver.c b/src/archiver.c index 1dbb0c0..c038c30 100644 --- a/src/archiver.c +++ b/src/archiver.c @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/archiver.h b/src/archiver.h index 44a7826..37046ce 100644 --- a/src/archiver.h +++ b/src/archiver.h @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/data_structures/hash_map.c b/src/data_structures/hash_map.c index 6150e55..4653457 100644 --- a/src/data_structures/hash_map.c +++ b/src/data_structures/hash_map.c @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/data_structures/hash_map.h b/src/data_structures/hash_map.h index 4fe302f..cc2501f 100644 --- a/src/data_structures/hash_map.h +++ b/src/data_structures/hash_map.h @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/data_structures/linked_list.c b/src/data_structures/linked_list.c index e3b399a..08142a1 100644 --- a/src/data_structures/linked_list.c +++ b/src/data_structures/linked_list.c @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/data_structures/linked_list.h b/src/data_structures/linked_list.h index 6c612d5..f9cf806 100644 --- a/src/data_structures/linked_list.h +++ b/src/data_structures/linked_list.h @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/data_structures/priority_heap.c b/src/data_structures/priority_heap.c index 9a1dd92..603d9ab 100644 --- a/src/data_structures/priority_heap.c +++ b/src/data_structures/priority_heap.c @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/data_structures/priority_heap.h b/src/data_structures/priority_heap.h index e6aa36c..4230d0a 100644 --- a/src/data_structures/priority_heap.h +++ b/src/data_structures/priority_heap.h @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/data_structures/test.c b/src/data_structures/test.c index c2732fc..86be0e9 100644 --- a/src/data_structures/test.c +++ b/src/data_structures/test.c @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/helpers.c b/src/helpers.c index a1dcae7..d814066 100644 --- a/src/helpers.c +++ b/src/helpers.c @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/helpers.h b/src/helpers.h index 05c47fc..1c14e5a 100644 --- a/src/helpers.h +++ b/src/helpers.h @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/main.c b/src/main.c index 86f9da8..e35c7e7 100644 --- a/src/main.c +++ b/src/main.c @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/parser.c b/src/parser.c index f3e3221..e5d1c90 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/parser.h b/src/parser.h index 0e0f7e5..bf368a8 100644 --- a/src/parser.h +++ b/src/parser.h @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/parser_internal.h b/src/parser_internal.h index 7da9d60..6f66707 100644 --- a/src/parser_internal.h +++ b/src/parser_internal.h @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/platforms.h b/src/platforms.h index f08e4ac..f7aabfd 100644 --- a/src/platforms.h +++ b/src/platforms.h @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/test.c b/src/test.c index 8df2a69..101ef00 100644 --- a/src/test.c +++ b/src/test.c @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/users.c b/src/users.c index add9b39..076cf98 100644 --- a/src/users.c +++ b/src/users.c @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above diff --git a/src/users.h b/src/users.h index 397fef7..f5d0d51 100644 --- a/src/users.h +++ b/src/users.h @@ -1,6 +1,6 @@ // ISC License // -// Copyright (c) 2024 Stephen Seo +// Copyright (c) 2024-2025 Stephen Seo // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above -- 2.49.0