diff options
-rw-r--r-- | src/ci.c | 7 | ||||
-rw-r--r-- | src/ci.h | 7 | ||||
-rw-r--r-- | src/ci_queue.c | 7 | ||||
-rw-r--r-- | src/ci_queue.h | 7 | ||||
-rw-r--r-- | src/client.c | 7 | ||||
-rw-r--r-- | src/client.h | 7 | ||||
-rw-r--r-- | src/client_main.c | 7 | ||||
-rw-r--r-- | src/compiler.h | 7 | ||||
-rw-r--r-- | src/const.h | 7 | ||||
-rw-r--r-- | src/file.c | 7 | ||||
-rw-r--r-- | src/file.h | 7 | ||||
-rw-r--r-- | src/git.c | 7 | ||||
-rw-r--r-- | src/git.h | 7 | ||||
-rw-r--r-- | src/log.h | 7 | ||||
-rw-r--r-- | src/msg.c | 7 | ||||
-rw-r--r-- | src/msg.h | 7 | ||||
-rw-r--r-- | src/net.c | 7 | ||||
-rw-r--r-- | src/net.h | 7 | ||||
-rw-r--r-- | src/process.c | 7 | ||||
-rw-r--r-- | src/process.h | 7 | ||||
-rw-r--r-- | src/server.c | 7 | ||||
-rw-r--r-- | src/server.h | 7 | ||||
-rw-r--r-- | src/server_main.c | 7 | ||||
-rw-r--r-- | src/signal.c | 7 | ||||
-rw-r--r-- | src/signal.h | 7 | ||||
-rw-r--r-- | src/storage.c | 7 | ||||
-rw-r--r-- | src/storage.h | 7 | ||||
-rw-r--r-- | src/storage_sqlite.c | 7 | ||||
-rw-r--r-- | src/storage_sqlite.h | 7 | ||||
-rw-r--r-- | src/tcp_server.c | 7 | ||||
-rw-r--r-- | src/tcp_server.h | 7 | ||||
-rw-r--r-- | src/worker.c | 7 | ||||
-rw-r--r-- | src/worker.h | 7 | ||||
-rw-r--r-- | src/worker_main.c | 7 |
34 files changed, 238 insertions, 0 deletions
@@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "ci.h" #include "file.h" #include "git.h" @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __CI_H__ #define __CI_H__ diff --git a/src/ci_queue.c b/src/ci_queue.c index 03cb0e7..97fc257 100644 --- a/src/ci_queue.c +++ b/src/ci_queue.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "ci_queue.h" #include "log.h" diff --git a/src/ci_queue.h b/src/ci_queue.h index d036376..cf8b182 100644 --- a/src/ci_queue.h +++ b/src/ci_queue.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __CI_QUEUE_H__ #define __CI_QUEUE_H__ diff --git a/src/client.c b/src/client.c index 6f1bb47..7c47ae6 100644 --- a/src/client.c +++ b/src/client.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "client.h" #include "log.h" #include "msg.h" diff --git a/src/client.h b/src/client.h index 05dec85..544501e 100644 --- a/src/client.h +++ b/src/client.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __CLIENT_H__ #define __CLIENT_H__ diff --git a/src/client_main.c b/src/client_main.c index 0bf4979..b481e44 100644 --- a/src/client_main.c +++ b/src/client_main.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "client.h" #include "const.h" diff --git a/src/compiler.h b/src/compiler.h index de721d9..9c4cbc5 100644 --- a/src/compiler.h +++ b/src/compiler.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __COMPILER_H__ #define __COMPILER_H__ diff --git a/src/const.h b/src/const.h index 08f20e5..539c767 100644 --- a/src/const.h +++ b/src/const.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __CONST_H__ #define __CONST_H__ @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "file.h" #include "compiler.h" #include "log.h" @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __FILE_H__ #define __FILE_H__ @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "git.h" #include "log.h" @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __GIT_H__ #define __GIT_H__ @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __LOG_H__ #define __LOG_H__ @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "msg.h" #include "log.h" #include "net.h" @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __MSG_H__ #define __MSG_H__ @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "net.h" #include "log.h" @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __NET_H__ #define __NET_H__ diff --git a/src/process.c b/src/process.c index 3134144..bff9772 100644 --- a/src/process.c +++ b/src/process.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "process.h" #include "file.h" #include "log.h" diff --git a/src/process.h b/src/process.h index bc20748..7f22a88 100644 --- a/src/process.h +++ b/src/process.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __PROCESS_H__ #define __PROCESS_H__ diff --git a/src/server.c b/src/server.c index c8c2e0d..152581b 100644 --- a/src/server.c +++ b/src/server.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "server.h" #include "ci_queue.h" #include "compiler.h" diff --git a/src/server.h b/src/server.h index ba2a52f..16dfb5c 100644 --- a/src/server.h +++ b/src/server.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __SERVER_H__ #define __SERVER_H__ diff --git a/src/server_main.c b/src/server_main.c index e2d811c..3d77ec8 100644 --- a/src/server_main.c +++ b/src/server_main.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "const.h" #include "server.h" diff --git a/src/signal.c b/src/signal.c index ca75455..b5c27ec 100644 --- a/src/signal.c +++ b/src/signal.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "signal.h" #include "log.h" diff --git a/src/signal.h b/src/signal.h index 95dca41..22305a9 100644 --- a/src/signal.h +++ b/src/signal.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __SIGNAL_H__ #define __SIGNAL_H__ diff --git a/src/storage.c b/src/storage.c index eac3e2d..a9eced0 100644 --- a/src/storage.c +++ b/src/storage.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "storage.h" #include "log.h" #include "storage_sqlite.h" diff --git a/src/storage.h b/src/storage.h index 1473325..2bb2fff 100644 --- a/src/storage.h +++ b/src/storage.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __STORAGE_H__ #define __STORAGE_H__ diff --git a/src/storage_sqlite.c b/src/storage_sqlite.c index 80cc294..b170e73 100644 --- a/src/storage_sqlite.c +++ b/src/storage_sqlite.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "storage_sqlite.h" #include "log.h" #include "storage.h" diff --git a/src/storage_sqlite.h b/src/storage_sqlite.h index e565052..b7f0bb1 100644 --- a/src/storage_sqlite.h +++ b/src/storage_sqlite.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __STORAGE_SQLITE_H__ #define __STORAGE_SQLITE_H__ diff --git a/src/tcp_server.c b/src/tcp_server.c index d82dc9f..87613a5 100644 --- a/src/tcp_server.c +++ b/src/tcp_server.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "tcp_server.h" #include "log.h" #include "net.h" diff --git a/src/tcp_server.h b/src/tcp_server.h index 12a819d..55fb1fa 100644 --- a/src/tcp_server.h +++ b/src/tcp_server.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __TCP_SERVER_H__ #define __TCP_SERVER_H__ diff --git a/src/worker.c b/src/worker.c index 5f7e0b6..6a18574 100644 --- a/src/worker.c +++ b/src/worker.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "worker.h" #include "ci.h" #include "compiler.h" diff --git a/src/worker.h b/src/worker.h index 5231594..0bf3e80 100644 --- a/src/worker.h +++ b/src/worker.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #ifndef __WORKER_H__ #define __WORKER_H__ diff --git a/src/worker_main.c b/src/worker_main.c index b5ccd51..7451861 100644 --- a/src/worker_main.c +++ b/src/worker_main.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "cimple" project. + * For details, see https://github.com/egor-tensin/cimple. + * Distributed under the MIT License. + */ + #include "const.h" #include "signal.h" #include "worker.h" |