From bf25e0f1a95d2c422ba1a6541ec3fcf53ac43b9f Mon Sep 17 00:00:00 2001 From: cozis Date: Sun, 13 Mar 2022 15:34:42 +0100 Subject: [PATCH] added year to the copyright notice --- src/builtins/basic.c | 2 +- src/builtins/basic.h | 2 +- src/builtins/files.c | 2 +- src/builtins/files.h | 2 +- src/builtins/math.c | 2 +- src/builtins/math.h | 2 +- src/common/executable.c | 2 +- src/common/executable.h | 2 +- src/compiler/AST.h | 2 +- src/compiler/ASTi.h | 2 +- src/compiler/compile.c | 2 +- src/compiler/compile.h | 2 +- src/compiler/parse.c | 2 +- src/compiler/parse.h | 2 +- src/main.c | 2 +- src/objects/heap.c | 2 +- src/objects/o_bool.c | 2 +- src/objects/o_buffer.c | 2 +- src/objects/o_closure.c | 2 +- src/objects/o_dir.c | 2 +- src/objects/o_file.c | 2 +- src/objects/o_float.c | 2 +- src/objects/o_int.c | 2 +- src/objects/o_list.c | 2 +- src/objects/o_map.c | 2 +- src/objects/o_none.c | 2 +- src/objects/o_string.c | 2 +- src/objects/objects.c | 2 +- src/objects/objects.h | 2 +- src/runtime/o_func.c | 2 +- src/runtime/o_func.h | 2 +- src/runtime/o_nfunc.c | 2 +- src/runtime/o_nfunc.h | 2 +- src/runtime/o_staticmap.c | 2 +- src/runtime/o_staticmap.h | 2 +- src/runtime/runtime.c | 2 +- src/runtime/runtime.h | 2 +- src/runtime/runtime_error.c | 2 +- src/runtime/runtime_error.h | 2 +- src/utils/bpalloc.c | 2 +- src/utils/bpalloc.h | 2 +- src/utils/bucketlist.c | 2 +- src/utils/bucketlist.h | 2 +- src/utils/defs.h | 2 +- src/utils/error.c | 2 +- src/utils/error.h | 2 +- src/utils/hash.c | 2 +- src/utils/hash.h | 2 +- src/utils/promise.c | 2 +- src/utils/promise.h | 2 +- src/utils/source.c | 2 +- src/utils/source.h | 2 +- src/utils/stack.c | 2 +- src/utils/stack.h | 2 +- src/utils/utf8.c | 2 +- src/utils/utf8.h | 2 +- 56 files changed, 56 insertions(+), 56 deletions(-) diff --git a/src/builtins/basic.c b/src/builtins/basic.c index 544b4f9..21df84a 100644 --- a/src/builtins/basic.c +++ b/src/builtins/basic.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/builtins/basic.h b/src/builtins/basic.h index 53ebc9c..bbf03c4 100644 --- a/src/builtins/basic.h +++ b/src/builtins/basic.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/builtins/files.c b/src/builtins/files.c index 470d1f9..d2f50cc 100644 --- a/src/builtins/files.c +++ b/src/builtins/files.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/builtins/files.h b/src/builtins/files.h index 6d1ca8b..79420c6 100644 --- a/src/builtins/files.h +++ b/src/builtins/files.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/builtins/math.c b/src/builtins/math.c index a0f2d32..568f932 100644 --- a/src/builtins/math.c +++ b/src/builtins/math.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/builtins/math.h b/src/builtins/math.h index c5fc3f0..c48b18b 100644 --- a/src/builtins/math.h +++ b/src/builtins/math.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/common/executable.c b/src/common/executable.c index 0745c46..409b9f5 100644 --- a/src/common/executable.c +++ b/src/common/executable.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/common/executable.h b/src/common/executable.h index 5a053be..321e098 100644 --- a/src/common/executable.h +++ b/src/common/executable.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/compiler/AST.h b/src/compiler/AST.h index ef6db45..092f192 100644 --- a/src/compiler/AST.h +++ b/src/compiler/AST.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/compiler/ASTi.h b/src/compiler/ASTi.h index 985f245..98664a8 100644 --- a/src/compiler/ASTi.h +++ b/src/compiler/ASTi.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/compiler/compile.c b/src/compiler/compile.c index b742fa7..77752b6 100644 --- a/src/compiler/compile.c +++ b/src/compiler/compile.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/compiler/compile.h b/src/compiler/compile.h index 1a22e26..0b7ee91 100644 --- a/src/compiler/compile.h +++ b/src/compiler/compile.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/compiler/parse.c b/src/compiler/parse.c index c3992ce..2a79939 100644 --- a/src/compiler/parse.c +++ b/src/compiler/parse.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/compiler/parse.h b/src/compiler/parse.h index a142e5c..0f409ef 100644 --- a/src/compiler/parse.h +++ b/src/compiler/parse.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/main.c b/src/main.c index 1881e51..28aca49 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/heap.c b/src/objects/heap.c index 4432241..421bc1d 100644 --- a/src/objects/heap.c +++ b/src/objects/heap.c @@ -1,4 +1,4 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/o_bool.c b/src/objects/o_bool.c index b81e526..df87e11 100644 --- a/src/objects/o_bool.c +++ b/src/objects/o_bool.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/o_buffer.c b/src/objects/o_buffer.c index 529f6c8..4c9beb2 100644 --- a/src/objects/o_buffer.c +++ b/src/objects/o_buffer.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/o_closure.c b/src/objects/o_closure.c index 53427e6..2667b25 100644 --- a/src/objects/o_closure.c +++ b/src/objects/o_closure.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/o_dir.c b/src/objects/o_dir.c index d008451..428cbbb 100644 --- a/src/objects/o_dir.c +++ b/src/objects/o_dir.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/o_file.c b/src/objects/o_file.c index 7090141..d1125f6 100644 --- a/src/objects/o_file.c +++ b/src/objects/o_file.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/o_float.c b/src/objects/o_float.c index fb9bcc5..22cb3ee 100644 --- a/src/objects/o_float.c +++ b/src/objects/o_float.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/o_int.c b/src/objects/o_int.c index 56aff59..f60a5b3 100644 --- a/src/objects/o_int.c +++ b/src/objects/o_int.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/o_list.c b/src/objects/o_list.c index e6801d1..404474b 100644 --- a/src/objects/o_list.c +++ b/src/objects/o_list.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/o_map.c b/src/objects/o_map.c index ae4a7ad..bc969d1 100644 --- a/src/objects/o_map.c +++ b/src/objects/o_map.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/o_none.c b/src/objects/o_none.c index 781f2ba..3662bb8 100644 --- a/src/objects/o_none.c +++ b/src/objects/o_none.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/o_string.c b/src/objects/o_string.c index 2f9cdc9..39a8074 100644 --- a/src/objects/o_string.c +++ b/src/objects/o_string.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/objects.c b/src/objects/objects.c index fb19870..1446b7c 100644 --- a/src/objects/objects.c +++ b/src/objects/objects.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/objects/objects.h b/src/objects/objects.h index 9614fad..32ad78c 100644 --- a/src/objects/objects.h +++ b/src/objects/objects.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/runtime/o_func.c b/src/runtime/o_func.c index c0c97e7..61fc37f 100644 --- a/src/runtime/o_func.c +++ b/src/runtime/o_func.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/runtime/o_func.h b/src/runtime/o_func.h index 46ddfaa..66f6288 100644 --- a/src/runtime/o_func.h +++ b/src/runtime/o_func.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/runtime/o_nfunc.c b/src/runtime/o_nfunc.c index 00d9550..090c21c 100644 --- a/src/runtime/o_nfunc.c +++ b/src/runtime/o_nfunc.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/runtime/o_nfunc.h b/src/runtime/o_nfunc.h index 55eda78..37876d7 100644 --- a/src/runtime/o_nfunc.h +++ b/src/runtime/o_nfunc.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/runtime/o_staticmap.c b/src/runtime/o_staticmap.c index 9ebbe33..b8dcde2 100644 --- a/src/runtime/o_staticmap.c +++ b/src/runtime/o_staticmap.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/runtime/o_staticmap.h b/src/runtime/o_staticmap.h index 2d4823f..fa33b06 100644 --- a/src/runtime/o_staticmap.h +++ b/src/runtime/o_staticmap.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index e074b91..2da108f 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h index e427b7a..e415a28 100644 --- a/src/runtime/runtime.h +++ b/src/runtime/runtime.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/runtime/runtime_error.c b/src/runtime/runtime_error.c index 2398b88..2041a19 100644 --- a/src/runtime/runtime_error.c +++ b/src/runtime/runtime_error.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/runtime/runtime_error.h b/src/runtime/runtime_error.h index 14990bc..d348eaa 100644 --- a/src/runtime/runtime_error.h +++ b/src/runtime/runtime_error.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/bpalloc.c b/src/utils/bpalloc.c index 632423d..5579e6d 100644 --- a/src/utils/bpalloc.c +++ b/src/utils/bpalloc.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/bpalloc.h b/src/utils/bpalloc.h index 8a0a2a8..fc88ff6 100644 --- a/src/utils/bpalloc.h +++ b/src/utils/bpalloc.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/bucketlist.c b/src/utils/bucketlist.c index d519731..dd6a956 100644 --- a/src/utils/bucketlist.c +++ b/src/utils/bucketlist.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/bucketlist.h b/src/utils/bucketlist.h index 5232474..9bfd603 100644 --- a/src/utils/bucketlist.h +++ b/src/utils/bucketlist.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/defs.h b/src/utils/defs.h index bbe323e..7d30b1c 100644 --- a/src/utils/defs.h +++ b/src/utils/defs.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/error.c b/src/utils/error.c index 0400b44..26ec904 100644 --- a/src/utils/error.c +++ b/src/utils/error.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/error.h b/src/utils/error.h index d59ee2f..c2d56f1 100644 --- a/src/utils/error.h +++ b/src/utils/error.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/hash.c b/src/utils/hash.c index d22dd8b..d00119e 100644 --- a/src/utils/hash.c +++ b/src/utils/hash.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/hash.h b/src/utils/hash.h index 3fdcedf..956e7e6 100644 --- a/src/utils/hash.h +++ b/src/utils/hash.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/promise.c b/src/utils/promise.c index 2cb3dc1..cf7c951 100644 --- a/src/utils/promise.c +++ b/src/utils/promise.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/promise.h b/src/utils/promise.h index 4e0d1f0..c713c85 100644 --- a/src/utils/promise.h +++ b/src/utils/promise.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/source.c b/src/utils/source.c index 86db5e3..cacd0e2 100644 --- a/src/utils/source.c +++ b/src/utils/source.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/source.h b/src/utils/source.h index 3e5d9e6..127ece3 100644 --- a/src/utils/source.h +++ b/src/utils/source.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/stack.c b/src/utils/stack.c index ea53255..37eb0e4 100644 --- a/src/utils/stack.c +++ b/src/utils/stack.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/stack.h b/src/utils/stack.h index 2d5c0de..ab4b696 100644 --- a/src/utils/stack.h +++ b/src/utils/stack.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/utf8.c b/src/utils/utf8.c index e265ad9..d442051 100644 --- a/src/utils/utf8.c +++ b/src/utils/utf8.c @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. ** diff --git a/src/utils/utf8.h b/src/utils/utf8.h index 9283713..635c0d3 100644 --- a/src/utils/utf8.h +++ b/src/utils/utf8.h @@ -1,5 +1,5 @@ -/* Copyright (c) Francesco Cozzuto +/* Copyright (c) 2022 Francesco Cozzuto ** ** This file is part of The Noja Interpreter. **