diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-05-01 22:14:52 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-05-01 22:14:52 +0300 |
| commit | edeea202fb6297fc5ae749a91ac8f9fb67b59fae (patch) | |
| tree | 01ed39a91664d3fff485de42d44647f4e4b7c24c /include | |
| parent | b35787f4f2cf24e61b82f1eec6a5ff5eed4ba70b (diff) | |
| download | ek-edeea202fb6297fc5ae749a91ac8f9fb67b59fae.tar.gz ek-edeea202fb6297fc5ae749a91ac8f9fb67b59fae.zip | |
update license stuff
Diffstat (limited to 'include')
| -rw-r--r-- | include/ek/actualize.h | 3 | ||||
| -rw-r--r-- | include/ek/ast.h | 3 | ||||
| -rw-r--r-- | include/ek/compiler.h | 3 | ||||
| -rw-r--r-- | include/ek/debug.h | 3 | ||||
| -rw-r--r-- | include/ek/imports.h | 3 | ||||
| -rw-r--r-- | include/ek/parser.h | 3 | ||||
| -rw-r--r-- | include/ek/path.h | 3 | ||||
| -rw-r--r-- | include/ek/res.h | 3 | ||||
| -rw-r--r-- | include/ek/scope.h | 3 | ||||
| -rw-r--r-- | include/ek/string.h | 3 |
10 files changed, 20 insertions, 10 deletions
diff --git a/include/ek/actualize.h b/include/ek/actualize.h index 94a4d30..f98df07 100644 --- a/include/ek/actualize.h +++ b/include/ek/actualize.h @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ #ifndef ANALYZE_H #define ANALYZE_H diff --git a/include/ek/ast.h b/include/ek/ast.h index 44850b6..3c55c1f 100644 --- a/include/ek/ast.h +++ b/include/ek/ast.h @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ #ifndef AST_H #define AST_H diff --git a/include/ek/compiler.h b/include/ek/compiler.h index ed60629..21ac7a2 100644 --- a/include/ek/compiler.h +++ b/include/ek/compiler.h @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ #ifndef EK_COMPILER_H #define EK_COMPILER_H diff --git a/include/ek/debug.h b/include/ek/debug.h index ef97f65..a6e2f57 100644 --- a/include/ek/debug.h +++ b/include/ek/debug.h @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ #ifndef EK_DEBUG_H #define EK_DEBUG_H diff --git a/include/ek/imports.h b/include/ek/imports.h index 3d806f5..c8fdfaf 100644 --- a/include/ek/imports.h +++ b/include/ek/imports.h @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ #ifndef EK_IMPORTS_H #define EK_IMPORTS_H diff --git a/include/ek/parser.h b/include/ek/parser.h index f4e471d..75322b9 100644 --- a/include/ek/parser.h +++ b/include/ek/parser.h @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ #ifndef PARSER_H #define PARSER_H diff --git a/include/ek/path.h b/include/ek/path.h index f4115e7..6e918a8 100644 --- a/include/ek/path.h +++ b/include/ek/path.h @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ #ifndef EK_PATH #define EK_PATH diff --git a/include/ek/res.h b/include/ek/res.h index b3efd63..efe669d 100644 --- a/include/ek/res.h +++ b/include/ek/res.h @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ /** * @file res.h diff --git a/include/ek/scope.h b/include/ek/scope.h index a325fcb..5962014 100644 --- a/include/ek/scope.h +++ b/include/ek/scope.h @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ #ifndef SCOPE_H #define SCOPE_H diff --git a/include/ek/string.h b/include/ek/string.h index 709ae90..7e93eb0 100644 --- a/include/ek/string.h +++ b/include/ek/string.h @@ -1,4 +1,5 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ #ifndef EK_STRING_H #define EK_STRING_H |
