qse/ase/doc/ase.man

48 lines
873 B
Groff
Raw Normal View History

2007-02-03 10:52:36 +00:00
.title ASE
2006-05-12 14:17:08 +00:00
== Introduction ==
2006-03-02 15:51:34 +00:00
2007-02-03 10:52:36 +00:00
ASE is a library implementing various programming languages for embedding purpose.
2007-02-01 08:38:24 +00:00
2007-02-03 10:52:36 +00:00
=== Source ===
2007-02-01 08:38:24 +00:00
2007-02-04 05:34:36 +00:00
[[[
* ase - the root directory of the ase project
* ase/awk - AWK module
* ase/lsp - lisp module
* ase/com - COM interface source code for ASE modules
* ase/test/awk -
* ase/test/lsp -
* ase/test/com -
* ase/etc -
* ase/doc -
]]]
[[[
* ase - the root directory of the ase project
* ase/awk - AWK module
* ase/lsp - lisp module
* ase/com - COM interface source code for ASE modules
* ase/test/awk -
* ase/test/lsp -
* ase/test/com -
* ase/etc -
* ase/doc -
]]]
2007-02-03 15:03:05 +00:00
{{{
2007-02-04 05:03:01 +00:00
#if defined(__BORLANDC__)
#pragma hdrstop
#define Library
#endif
#include <ase/awk/awk_i.h>
static void __free_afn (void* awk, void* afn);
ase_awk_t* ase_awk_open (
const ase_awk_prmfns_t* prmfns, void* custom_data, int* errnum)
{
ase_awk_t* awk;
}
2007-02-03 15:03:05 +00:00
}}}