revised project information and added more test scripts for awk

This commit is contained in:
2009-12-14 01:44:50 +00:00
parent 689fb93301
commit 0d83bdba2c
48 changed files with 639 additions and 584 deletions

View File

@ -118,6 +118,8 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
QSE_PROJECT_AUTHOR = @QSE_PROJECT_AUTHOR@
QSE_PROJECT_URL = @QSE_PROJECT_URL@
QSE_SIZEOF_CHAR = @QSE_SIZEOF_CHAR@
QSE_SIZEOF_DOUBLE = @QSE_SIZEOF_DOUBLE@
QSE_SIZEOF_FLOAT = @QSE_SIZEOF_FLOAT@

View File

@ -2,15 +2,17 @@
@section awk_intro INTRODUCTION
QSE includes an implementaion of an AWK interpreter that can be embedded
into an application written in C and/or C++. A hosting application can
QSEAWK is an embeddable AWK interpreter that is a part of the QSE library.
The design focuses on easy to use APIs
A embedding application can
- add new awk global variables and functions.
- get and set the value of a global variable.
- call an awk function.
- customize I/O handlers for file, pipe, console I/O.
- embed multiple interpreters independent of each other.
- run a single script with different I/O streams independently.
- change language features supported by setting options.
- change language features by setting options.
The interpreter implements the language described in the book
The AWK Programming Language(http://cm.bell-labs.com/cm/cs/awkbook/) with

View File

@ -22,7 +22,7 @@ http://www.gnu.org/licenses/
The project webpage: http://qse.googlecode.com/
For further information, contact:
Chung, Hyung-Hwan <bacon@abiyo.net>
Chung, Hyung-Hwan <hyunghwan.chung@gmail.com>
@section installation INSTALLATION