From fc992cd1e4b83fa307755adffa0e9058ee37b086 Mon Sep 17 00:00:00 2001 From: Olliver Schinagl Date: Thu, 17 Mar 2016 09:26:29 +0100 Subject: Add copyright header to all files This patch adds copyright info to source and header files Signed-off-by: Olliver Schinagl --- src/bin/engagement.c | 7 +++++++ src/bin/engagement_private.h | 13 ++++++++++--- src/lib/engagement.c | 7 +++++++ src/lib/engagement.h | 13 ++++++++++--- src/lib/engagement_private.h | 13 ++++++++++--- src/tests/test_engagement.c | 7 +++++++ 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 + * + * 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 + * + * 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 + * + * 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 + * + * SPDX-License-Identifier: AGPL-3.0+ + */ + +#ifndef _ENGAGEMENT_H_ +#define _ENGAGEMENT_H_ #include @@ -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 + * + * 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 + * + * SPDX-License-Identifier: AGPL-3.0+ + */ + #ifdef HAVE_CONFIG_H # include "config.h" #endif -- cgit v0.12