/* * $Id: parse.h,v 1.3 2007/04/30 05:47:33 bacon Exp $ * * {License} */ #ifndef _ASE_AWK_PARSE_H_ #define _ASE_AWK_PARSE_H_ #ifndef _ASE_AWK_AWK_H_ #error Never include this file directly. Include instead #endif #ifdef __cplusplus extern "C" { #endif int ase_awk_putsrcstr (ase_awk_t* awk, const ase_char_t* str); int ase_awk_putsrcstrx ( ase_awk_t* awk, const ase_char_t* str, ase_size_t len); const ase_char_t* ase_awk_getglobalname ( ase_awk_t* awk, ase_size_t idx, ase_size_t* len); #ifdef __cplusplus } #endif #endif