summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlliver Schinagl <oliver@schinagl.nl>2016-03-17 08:26:29 (GMT)
committerOlliver Schinagl <oliver@schinagl.nl>2016-03-18 20:42:52 (GMT)
commitfc992cd1e4b83fa307755adffa0e9058ee37b086 (patch)
tree504e11e4b60f9e4b5ce290790a43932f846c589f
parent9500d3fbd3c205d0912d04fe507406d2ee52218e (diff)
downloadengagement-fc992cd1e4b83fa307755adffa0e9058ee37b086.zip
engagement-fc992cd1e4b83fa307755adffa0e9058ee37b086.tar.gz
engagement-fc992cd1e4b83fa307755adffa0e9058ee37b086.tar.bz2
Add copyright header to all files
This patch adds copyright info to source and header files Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
-rw-r--r--src/bin/engagement.c7
-rw-r--r--src/bin/engagement_private.h13
-rw-r--r--src/lib/engagement.c7
-rw-r--r--src/lib/engagement.h13
-rw-r--r--src/lib/engagement_private.h13
-rw-r--r--src/tests/test_engagement.c7
6 files changed, 51 insertions, 9 deletions
diff --git a/src/bin/engagement.c b/src/bin/engagement.c
index f5463ca..4482a0c 100644
--- a/src/bin/engagement.c
+++ b/src/bin/engagement.c
@@ -1,3 +1,10 @@
+/*
+ * (c) Copyright 2016 Olliver Schinagl
+ * Author: Olliver Schinagl <oliver@schinagl.nl>
+ *
+ * SPDX-License-Identifier: AGPL-3.0+
+ */
+
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
diff --git a/src/bin/engagement_private.h b/src/bin/engagement_private.h
index 6e49a8b..9eb4355 100644
--- a/src/bin/engagement_private.h
+++ b/src/bin/engagement_private.h
@@ -1,6 +1,13 @@
-#ifndef ENGAGEMENT_PRIVATE_H_
-# define ENGAGEMENT_PRIVATE_H_
+/*
+ * (c) Copyright 2016 Olliver Schinagl
+ * Author: Olliver Schinagl <oliver@schinagl.nl>
+ *
+ * SPDX-License-Identifier: AGPL-3.0+
+ */
+
+#ifndef _ENGAGEMENT_PRIVATE_H_
+#define _ENGAGEMENT_PRIVATE_H_
// FIXME: put some private stuff related to your binary
-#endif
+#endif /* _ENGAGEMENT_PRIVATE_H_ */
diff --git a/src/lib/engagement.c b/src/lib/engagement.c
index 55741a3..d268202 100644
--- a/src/lib/engagement.c
+++ b/src/lib/engagement.c
@@ -1,3 +1,10 @@
+/*
+ * (c) Copyright 2016 Olliver Schinagl
+ * Author: Olliver Schinagl <oliver@schinagl.nl>
+ *
+ * SPDX-License-Identifier: AGPL-3.0+
+ */
+
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
diff --git a/src/lib/engagement.h b/src/lib/engagement.h
index 487d8c9..2692d0c 100644
--- a/src/lib/engagement.h
+++ b/src/lib/engagement.h
@@ -1,5 +1,12 @@
-#ifndef ENGAGEMENT_H_
-# define ENGAGEMENT_H_
+/*
+ * (c) Copyright 2016 Olliver Schinagl
+ * Author: Olliver Schinagl <oliver@schinagl.nl>
+ *
+ * SPDX-License-Identifier: AGPL-3.0+
+ */
+
+#ifndef _ENGAGEMENT_H_
+#define _ENGAGEMENT_H_
#include <Elementary.h>
@@ -108,4 +115,4 @@ EAPI void engagement_library_call(void);
}
#endif
-#endif /* ENGAGEMENT_H_ */
+#endif /* _ENGAGEMENT_H_ */
diff --git a/src/lib/engagement_private.h b/src/lib/engagement_private.h
index 986a70d..19e6a76 100644
--- a/src/lib/engagement_private.h
+++ b/src/lib/engagement_private.h
@@ -1,5 +1,12 @@
-#ifndef ENGAGEMENT_PRIVATE_H
-# define ENGAGEMENT_PRIVATE_H
+/*
+ * (c) Copyright 2016 Olliver Schinagl
+ * Author: Olliver Schinagl <oliver@schinagl.nl>
+ *
+ * SPDX-License-Identifier: AGPL-3.0+
+ */
+
+#ifndef _ENGAGEMENT_PRIVATE_H_
+#define _ENGAGEMENT_PRIVATE_H_
extern int _engagement_lib_log_dom;
@@ -24,4 +31,4 @@ extern int _engagement_lib_log_dom;
#endif
#define DBG(...) EINA_LOG_DOM_DBG(_engagement_lib_log_dom, __VA_ARGS__)
-#endif
+#endif /* _ENGAGEMENT_PRIVATE_H_ */
diff --git a/src/tests/test_engagement.c b/src/tests/test_engagement.c
index 1d38411..57b186d 100644
--- a/src/tests/test_engagement.c
+++ b/src/tests/test_engagement.c
@@ -1,3 +1,10 @@
+/*
+ * (c) Copyright 2016 Olliver Schinagl
+ * Author: Olliver Schinagl <oliver@schinagl.nl>
+ *
+ * SPDX-License-Identifier: AGPL-3.0+
+ */
+
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif