aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/ci.c7
-rw-r--r--src/ci.h7
-rw-r--r--src/ci_queue.c7
-rw-r--r--src/ci_queue.h7
-rw-r--r--src/client.c7
-rw-r--r--src/client.h7
-rw-r--r--src/client_main.c7
-rw-r--r--src/compiler.h7
-rw-r--r--src/const.h7
-rw-r--r--src/file.c7
-rw-r--r--src/file.h7
-rw-r--r--src/git.c7
-rw-r--r--src/git.h7
-rw-r--r--src/log.h7
-rw-r--r--src/msg.c7
-rw-r--r--src/msg.h7
-rw-r--r--src/net.c7
-rw-r--r--src/net.h7
-rw-r--r--src/process.c7
-rw-r--r--src/process.h7
-rw-r--r--src/server.c7
-rw-r--r--src/server.h7
-rw-r--r--src/server_main.c7
-rw-r--r--src/signal.c7
-rw-r--r--src/signal.h7
-rw-r--r--src/storage.c7
-rw-r--r--src/storage.h7
-rw-r--r--src/storage_sqlite.c7
-rw-r--r--src/storage_sqlite.h7
-rw-r--r--src/tcp_server.c7
-rw-r--r--src/tcp_server.h7
-rw-r--r--src/worker.c7
-rw-r--r--src/worker.h7
-rw-r--r--src/worker_main.c7
34 files changed, 238 insertions, 0 deletions
diff --git a/src/ci.c b/src/ci.c
index bfd30e9..f5498b2 100644
--- a/src/ci.c
+++ b/src/ci.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.h"
#include "file.h"
#include "git.h"
diff --git a/src/ci.h b/src/ci.h
index f890796..d04b682 100644
--- a/src/ci.h
+++ b/src/ci.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__
diff --git a/src/file.c b/src/file.c
index 58d63e3..55e1691 100644
--- a/src/file.c
+++ b/src/file.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 "file.h"
#include "compiler.h"
#include "log.h"
diff --git a/src/file.h b/src/file.h
index 03d5e9a..a68f628 100644
--- a/src/file.h
+++ b/src/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.
+ */
+
#ifndef __FILE_H__
#define __FILE_H__
diff --git a/src/git.c b/src/git.c
index d7f7c69..c2d63e3 100644
--- a/src/git.c
+++ b/src/git.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 "git.h"
#include "log.h"
diff --git a/src/git.h b/src/git.h
index 83b9c49..c69765c 100644
--- a/src/git.h
+++ b/src/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 __GIT_H__
#define __GIT_H__
diff --git a/src/log.h b/src/log.h
index db650f4..a0213ee 100644
--- a/src/log.h
+++ b/src/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 __LOG_H__
#define __LOG_H__
diff --git a/src/msg.c b/src/msg.c
index 54da6dc..df8e14e 100644
--- a/src/msg.c
+++ b/src/msg.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 "msg.h"
#include "log.h"
#include "net.h"
diff --git a/src/msg.h b/src/msg.h
index f6b85e6..ff03bfc 100644
--- a/src/msg.h
+++ b/src/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.
+ */
+
#ifndef __MSG_H__
#define __MSG_H__
diff --git a/src/net.c b/src/net.c
index 52ddbaf..c972549 100644
--- a/src/net.c
+++ b/src/net.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 "net.h"
#include "log.h"
diff --git a/src/net.h b/src/net.h
index 305f590..b6dd174 100644
--- a/src/net.h
+++ b/src/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 __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"