This commit is contained in:
2008-06-30 07:41:11 +00:00
parent 07b451aedb
commit 8fa039f1e2
4 changed files with 154 additions and 74 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.h 232 2008-06-28 09:38:00Z baconevi $
* $Id: awk.h 233 2008-06-29 13:41:11Z baconevi $
*
* {License}
*/
@ -464,7 +464,7 @@ int ase_awk_clear (ase_awk_t* awk);
/**
* @function ase_awk_setassocdata
* @brief ssociats the user-specified data with an interpreter
* @brief associats the user-specified data with an interpreter
*/
void ase_awk_setassocdata (ase_awk_t* awk, void* data);
/**

View File

@ -1,5 +1,5 @@
/*
* $Id: tgp.h 229 2008-06-26 10:46:39Z baconevi $
* $Id: tgp.h 233 2008-06-29 13:41:11Z baconevi $
*
* {License}
*/
@ -30,6 +30,12 @@ extern "C" {
ase_tgp_t* ase_tgp_open (ase_mmgr_t* mmgr);
void ase_tgp_close (ase_tgp_t* tgp);
void ase_tgp_setassocdata (ase_tgp_t* tgp, void* data);
void* ase_tgp_getassocdata (ase_tgp_t* tgp);
void ase_tgp_setio (ase_tgp_t* tgp, ase_tgp_io_t* io);
void ase_tgp_getio (ase_tgp_t* tgp, ase_tgp_io_t* io);
#ifdef __cplusplus
}
#endif