Add missing legal info.
All checks were successful
The build was successful.

This commit is contained in:
2019-04-20 20:03:42 +02:00
parent 8f18ebf884
commit aa64a5eeb2
12 changed files with 94 additions and 0 deletions

View File

@@ -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 <devel@symisc.net>
* Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#include "lib.h"
/* Tokenize an entire XML input */

View File

@@ -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 <devel@symisc.net>
* Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __LIB_H__
#define __LIB_H__

View File

@@ -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 <devel@symisc.net>
* Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#include "xml.h"
/*

View File

@@ -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 <devel@symisc.net>
* Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XML_H__
#define __XML_H__