2006-08-21 14:51:32 +00:00
|
|
|
/*
|
2007-03-02 11:14:35 +00:00
|
|
|
* $Id: parse.h,v 1.5 2007-03-02 11:14:34 bacon Exp $
|
2007-02-03 10:47:41 +00:00
|
|
|
*
|
|
|
|
* {License}
|
2006-08-21 14:51:32 +00:00
|
|
|
*/
|
|
|
|
|
2006-10-24 04:10:12 +00:00
|
|
|
#ifndef _ASE_AWK_PARSE_H_
|
|
|
|
#define _ASE_AWK_PARSE_H_
|
2006-08-21 14:51:32 +00:00
|
|
|
|
2006-10-24 04:10:12 +00:00
|
|
|
#ifndef _ASE_AWK_AWK_H_
|
|
|
|
#error Never include this file directly. Include <ase/awk/awk.h> instead
|
2006-08-21 14:51:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2006-10-24 04:10:12 +00:00
|
|
|
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);
|
2006-08-21 14:51:32 +00:00
|
|
|
|
2007-03-02 11:14:35 +00:00
|
|
|
const ase_char_t* ase_awk_getglobalname (
|
|
|
|
ase_awk_t* awk, ase_size_t idx, ase_size_t* len);
|
|
|
|
|
2006-08-21 14:51:32 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|