From aa64a5eeb26c3fea794353c8a948fa2985d38d96 Mon Sep 17 00:00:00 2001 From: belliash Date: Sat, 20 Apr 2019 20:03:42 +0200 Subject: [PATCH] Add missing legal info. --- modules/ctype/ctype.c | 8 ++++++++ modules/ctype/ctype.h | 8 ++++++++ modules/dummy/dummy.c | 7 +++++++ modules/dummy/dummy.h | 7 +++++++ modules/json/json.c | 8 ++++++++ modules/json/json.h | 8 ++++++++ modules/math/math.c | 8 ++++++++ modules/math/math.h | 8 ++++++++ modules/xml/lib.c | 8 ++++++++ modules/xml/lib.h | 8 ++++++++ modules/xml/xml.c | 8 ++++++++ modules/xml/xml.h | 8 ++++++++ 12 files changed, 94 insertions(+) diff --git a/modules/ctype/ctype.c b/modules/ctype/ctype.c index 7ee6f8a..a7e39b8 100644 --- a/modules/ctype/ctype.c +++ b/modules/ctype/ctype.c @@ -1,3 +1,11 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/ctype/ctype.c + * @DESCRIPTION Character type checking module for AerScript Interpreter + * @DEVELOPERS Symisc Systems + * Rafal Kupiec + */ #include "ctype.h" /* diff --git a/modules/ctype/ctype.h b/modules/ctype/ctype.h index 2df4ecb..b23f611 100644 --- a/modules/ctype/ctype.h +++ b/modules/ctype/ctype.h @@ -1,3 +1,11 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/ctype/ctype.h + * @DESCRIPTION Character type checking module for AerScript Interpreter + * @DEVELOPERS Symisc Systems + * Rafal Kupiec + */ #ifndef __CTYPE_H__ #define __CTYPE_H__ diff --git a/modules/dummy/dummy.c b/modules/dummy/dummy.c index ae99f0a..005a968 100644 --- a/modules/dummy/dummy.c +++ b/modules/dummy/dummy.c @@ -1,3 +1,10 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/dummy/dummy.c + * @DESCRIPTION Dummy module for AerScript Interpreter + * @DEVELOPERS Rafal Kupiec + */ #include "dummy.h" static void AER_DUMMY_CONSTANT_Const(ph7_value *pVal, void *pUserData) { diff --git a/modules/dummy/dummy.h b/modules/dummy/dummy.h index d92ce3b..91fabc6 100644 --- a/modules/dummy/dummy.h +++ b/modules/dummy/dummy.h @@ -1,3 +1,10 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/dummy/dummy.h + * @DESCRIPTION Dummy module for AerScript Interpreter + * @DEVELOPERS Rafal Kupiec + */ #ifndef __DUMMY_H__ #define __DUMMY_H__ diff --git a/modules/json/json.c b/modules/json/json.c index 26e4e76..0622083 100644 --- a/modules/json/json.c +++ b/modules/json/json.c @@ -1,3 +1,11 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/json/json.c + * @DESCRIPTION JavaScript Object Notation (JSON) module for AerScript Interpreter + * @DEVELOPERS Symisc Systems + * Rafal Kupiec + */ #include "json.h" /* diff --git a/modules/json/json.h b/modules/json/json.h index 0af93b4..a126d7f 100644 --- a/modules/json/json.h +++ b/modules/json/json.h @@ -1,3 +1,11 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/json/json.c + * @DESCRIPTION JavaScript Object Notation (JSON) module for AerScript Interpreter + * @DEVELOPERS Symisc Systems + * Rafal Kupiec + */ #ifndef __JSON_H__ #define __JSON_H__ diff --git a/modules/math/math.c b/modules/math/math.c index 53f6ea3..bd09962 100644 --- a/modules/math/math.c +++ b/modules/math/math.c @@ -1,3 +1,11 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/math/math.c + * @DESCRIPTION Mathematical functions module for AerScript Interpreter + * @DEVELOPERS Symisc Systems + * Rafal Kupiec + */ #include "math.h" /* diff --git a/modules/math/math.h b/modules/math/math.h index 8a5e2dd..d97a857 100644 --- a/modules/math/math.h +++ b/modules/math/math.h @@ -1,3 +1,11 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/math/math.h + * @DESCRIPTION Mathematical functions module for AerScript Interpreter + * @DEVELOPERS Symisc Systems + * Rafal Kupiec + */ #ifndef __MATH_H__ #define __MATH_H__ diff --git a/modules/xml/lib.c b/modules/xml/lib.c index 03bed83..f2fe84f 100644 --- a/modules/xml/lib.c +++ b/modules/xml/lib.c @@ -1,3 +1,11 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/xml/lib.c + * @DESCRIPTION XML parser module for AerScript Interpreter + * @DEVELOPERS Symisc Systems + * Rafal Kupiec + */ #include "lib.h" /* Tokenize an entire XML input */ diff --git a/modules/xml/lib.h b/modules/xml/lib.h index 9d3f943..aadd423 100644 --- a/modules/xml/lib.h +++ b/modules/xml/lib.h @@ -1,3 +1,11 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/xml/lib.h + * @DESCRIPTION XML parser module for AerScript Interpreter + * @DEVELOPERS Symisc Systems + * Rafal Kupiec + */ #ifndef __LIB_H__ #define __LIB_H__ diff --git a/modules/xml/xml.c b/modules/xml/xml.c index b7598a4..650f290 100644 --- a/modules/xml/xml.c +++ b/modules/xml/xml.c @@ -1,3 +1,11 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/xml/xml.c + * @DESCRIPTION XML parser module for AerScript Interpreter + * @DEVELOPERS Symisc Systems + * Rafal Kupiec + */ #include "xml.h" /* diff --git a/modules/xml/xml.h b/modules/xml/xml.h index c2707e7..ed5a27d 100644 --- a/modules/xml/xml.h +++ b/modules/xml/xml.h @@ -1,3 +1,11 @@ +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE modules/xml/xml.h + * @DESCRIPTION XML parser module for AerScript Interpreter + * @DEVELOPERS Symisc Systems + * Rafal Kupiec + */ #ifndef __XML_H__ #define __XML_H__