From 8f18ebf88435b30accdb2fa0d722ac6f31880252 Mon Sep 17 00:00:00 2001 From: belliash Date: Sat, 20 Apr 2019 19:53:16 +0200 Subject: [PATCH] Update legal info. --- engine/api.c | 1 + engine/compiler.c | 1 + engine/vfs.c | 1 + engine/vm.c | 1 + sapi/cli/main.c | 35 +++++++---------------------------- 5 files changed, 11 insertions(+), 28 deletions(-) diff --git a/engine/api.c b/engine/api.c index ee55e2c..618574c 100644 --- a/engine/api.c +++ b/engine/api.c @@ -5,6 +5,7 @@ * @DESCRIPTION PH7 Engine public Interfaces to AerScript SAPI * @DEVELOPERS Symisc Systems * Rafal Kupiec + * David Carlier */ #include "ph7int.h" diff --git a/engine/compiler.c b/engine/compiler.c index 09bd56a..e1cf3dd 100644 --- a/engine/compiler.c +++ b/engine/compiler.c @@ -5,6 +5,7 @@ * @DESCRIPTION PH7 Engine Compiler for the Aer language * @DEVELOPERS Symisc Systems * Rafal Kupiec + * Piotr Likoski */ #include "compiler.h" diff --git a/engine/vfs.c b/engine/vfs.c index 77a64b5..ce1107a 100644 --- a/engine/vfs.c +++ b/engine/vfs.c @@ -5,6 +5,7 @@ * @DESCRIPTION Implements a virtual file systems (VFS) for the PH7 engine * @DEVELOPERS Symisc Systems * Rafal Kupiec + * David Carlier */ #include "ph7int.h" /* diff --git a/engine/vm.c b/engine/vm.c index 0508cc5..e90901c 100644 --- a/engine/vm.c +++ b/engine/vm.c @@ -5,6 +5,7 @@ * @DESCRIPTION AerScript Virtual Machine (VM) for the PH7 Engine * @DEVELOPERS Symisc Systems * Rafal Kupiec + * David Carlier */ #include "ph7int.h" diff --git a/sapi/cli/main.c b/sapi/cli/main.c index 594bb1c..980dcc4 100644 --- a/sapi/cli/main.c +++ b/sapi/cli/main.c @@ -1,31 +1,10 @@ -/* - * Compile this file together with the ph7 engine source code to generate - * the simple PH7 interpreter executable. For example: - * gcc -W -Wall -O6 -D PH7_ENABLE_MATH_FUNC -o ph7 ph7_interp.c ph7.c - */ -/* - * The PH7 interpreter is a simple stand-alone PHP interpreter that allows - * the user to enter and execute PHP files against a PH7 engine. - * To start the ph7 program, just type "ph7" followed by the name of the PHP file - * to compile and execute. That is, the first argument is to the interpreter, the rest - * are scripts arguments, press "Enter" and the PHP code will be executed. - * If something goes wrong while processing the PHP script due to a compile-time error - * your error output (STDOUT) should display the compile-time error messages. - * - * Usage example of the ph7 interpreter: - * ph7 scripts/hello_world.php - * Running the interpreter with script arguments - * ph7 scripts/mp3_tag.php /usr/local/path/to/my_mp3s - * - * The PH7 interpreter package includes more than 70 PHP scripts to test ranging from - * simple hello world programs to XML processing, ZIP archive extracting, MP3 tag extracting, - * UUID generation, JSON encoding/decoding, INI processing, Base32 encoding/decoding and many - * more. These scripts are available in the scripts directory from the zip archive. - */ -/* $SymiscID: ph7_interp.c v1.7.4 Win7 2012-10-06 03:22 stable $ */ -/* Make sure you have the latest release of the PH7 engine - * from: - * http://ph7.symisc.net/downloads.html +/** + * @PROJECT AerScript Interpreter + * @COPYRIGHT See COPYING in the top level directory + * @FILE sapi/cli/main.c + * @DESCRIPTION Command line SAPI for the AerScript Interpreter + * @DEVELOPERS Symisc Systems + * Rafal Kupiec */ #include #include