qse/ase/awk/parse.h

25 lines
442 B
C
Raw Normal View History

2006-08-21 14:51:32 +00:00
/*
2006-10-24 04:10:12 +00:00
* $Id: parse.h,v 1.3 2006-10-24 04:10:12 bacon Exp $
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
#ifdef __cplusplus
}
#endif
#endif