Skip to content

Commit

Permalink
Update copyright.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Jan 23, 2024
1 parent 22918fd commit 6966027
Show file tree
Hide file tree
Showing 854 changed files with 898 additions and 898 deletions.
2 changes: 1 addition & 1 deletion source/adt/include/adt/adt.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/adt/include/adt/adt_bucket.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Abstract Data Type Library by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A abstract data type library providing generic containers.
*
Expand Down
2 changes: 1 addition & 1 deletion source/adt/include/adt/adt_comparable.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/adt/include/adt/adt_hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/adt/include/adt/adt_map.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Abstract Data Type Library by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A abstract data type library providing generic containers.
*
Expand Down
2 changes: 1 addition & 1 deletion source/adt/include/adt/adt_set.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Abstract Data Type Library by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A abstract data type library providing generic containers.
*
Expand Down
2 changes: 1 addition & 1 deletion source/adt/include/adt/adt_string.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/adt/include/adt/adt_trie.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Abstract Data Type Library by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A abstract data type library providing generic containers.
*
Expand Down
2 changes: 1 addition & 1 deletion source/adt/include/adt/adt_vector.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Abstract Data Type Library by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A abstract data type library providing generic containers.
*
Expand Down
4 changes: 2 additions & 2 deletions source/adt/source/adt.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -26,7 +26,7 @@ const char *adt_print_info(void)
{
static const char adt_info[] =
"Abstract Data Type Library " METACALL_VERSION "\n"
"Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>\n"
"Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>\n"

#ifdef ADT_STATIC_DEFINE
"Compiled as static library type"
Expand Down
2 changes: 1 addition & 1 deletion source/adt/source/adt_bucket.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/adt/source/adt_comparable.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/adt/source/adt_hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/adt/source/adt_map.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/adt/source/adt_set.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/adt/source/adt_trie.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/adt/source/adt_vector.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Abstract Data Type Library by Parra Studios
* A abstract data type library providing generic containers.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/benchmarks/log_bench/source/log_bench.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* MetaCall Library by Parra Studios
* A library for providing a foreign function interface calls.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* MetaCall Library by Parra Studios
* A library for providing a foreign function interface calls.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* MetaCall Library by Parra Studios
* A library for providing a foreign function interface calls.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* MetaCall Library by Parra Studios
* A library for providing a foreign function interface calls.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* MetaCall Library by Parra Studios
* A library for providing a foreign function interface calls.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* MetaCall Library by Parra Studios
* A library for providing a foreign function interface calls.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* MetaCall Library by Parra Studios
* A library for providing a foreign function interface calls.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/cli/metacallcli/include/metacallcli/application.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* MetaCall Command Line Interface by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A command line interface example as metacall wrapper.
*
Expand Down
2 changes: 1 addition & 1 deletion source/cli/metacallcli/include/metacallcli/parser.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* MetaCall Command Line Interface by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A command line interface example as metacall wrapper.
*
Expand Down
2 changes: 1 addition & 1 deletion source/cli/metacallcli/include/metacallcli/tokenizer.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* MetaCall Command Line Interface by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A command line interface example as metacall wrapper.
*
Expand Down
2 changes: 1 addition & 1 deletion source/cli/metacallcli/inline/metacallcli/parser.inl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* MetaCall Command Line Interface by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A command line interface example as metacall wrapper.
*
Expand Down
4 changes: 2 additions & 2 deletions source/cli/metacallcli/source/application.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* MetaCall Command Line Interface by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A command line interface example as metacall wrapper.
*
Expand Down Expand Up @@ -51,7 +51,7 @@ using namespace metacallcli;
bool command_cb_help(application & /*app*/, tokenizer & /*t*/)
{
std::cout << "MetaCall Command Line Interface by Parra Studios" << std::endl;
std::cout << "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>" << std::endl;
std::cout << "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>" << std::endl;
std::cout << std::endl
<< "A command line interface for MetaCall Core" << std::endl;

Expand Down
2 changes: 1 addition & 1 deletion source/cli/metacallcli/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* MetaCall Command Line Interface by Parra Studios
* A command line interface example as metacall wrapper.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion source/cli/metacallcli/source/parser.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* MetaCall Command Line Interface by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A command line interface example as metacall wrapper.
*
Expand Down
2 changes: 1 addition & 1 deletion source/cli/metacallcli/source/tokenizer.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* MetaCall Command Line Interface by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A command line interface example as metacall wrapper.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CLI Core Plugin by Parra Studios
* A plugin implementing core functionality for MetaCall CLI.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions source/cli/plugins/cli_core_plugin/source/cli_core_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CLI Core Plugin by Parra Studios
* A plugin implementing core functionality for MetaCall CLI.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -50,7 +50,7 @@
std::cout << "MetaCall Command Line Interface by Parra Studios" << std::endl; \
std::cout << "A command line interface for MetaCall Core" << std::endl; \
std::cout << std::endl; \
std::cout << "Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>" << std::endl; \
std::cout << "Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>" << std::endl; \
} while (0)

template <typename result_type, typename cast_func_type>
Expand Down
2 changes: 1 addition & 1 deletion source/configuration/include/configuration/configuration.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Configuration Library by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A cross-platform library for managing multiple configuration formats.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Configuration Library by Parra Studios
* A cross-platform library for managing multiple configuration formats.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Configuration Library by Parra Studios
* A cross-platform library for managing multiple configuration formats.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Configuration Library by Parra Studios
* A cross-platform library for managing multiple configuration formats.
*
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Configuration Library by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A cross-platform library for managing multiple configuration formats.
*
Expand Down
4 changes: 2 additions & 2 deletions source/configuration/source/configuration.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Configuration Library by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A cross-platform library for managing multiple configuration formats.
*
Expand Down Expand Up @@ -254,7 +254,7 @@ const char *configuration_print_info(void)
{
static const char configuration_info[] =
"Configuration Library " METACALL_VERSION "\n"
"Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>\n"
"Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>\n"

#ifdef CONFIGURATION_STATIC_DEFINE
"Compiled as static library type"
Expand Down
2 changes: 1 addition & 1 deletion source/configuration/source/configuration_impl.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Configuration Library by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A cross-platform library for managing multiple configuration formats.
*
Expand Down
2 changes: 1 addition & 1 deletion source/configuration/source/configuration_object.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Configuration Library by Parra Studios
* Copyright (C) 2016 - 2022 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
* Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
*
* A cross-platform library for managing multiple configuration formats.
*
Expand Down
Loading

0 comments on commit 6966027

Please sign in to comment.