qse/ase/awk/extio.h

30 lines
558 B
C
Raw Normal View History

2006-06-21 11:45:26 +00:00
#ifndef _XP_AWK_EXTIO_H_
#define _XP_AWK_EXTIO_H_
#ifndef _XP_AWK_AWK_H_
#error Never include this file directly. Include <xp/awk/awk.h> instead
#endif
#ifdef __cplusplus
extern "C"
#endif
2006-06-21 13:52:15 +00:00
int xp_awk_readextio (
xp_awk_run_t* run, int type, const xp_char_t* name, int* errnum);
2006-06-22 14:15:02 +00:00
int xp_awk_writeextio (
xp_awk_run_t* run, int type,
const xp_char_t* name, xp_awk_val_t* v, int* errnum);
2006-06-21 13:52:15 +00:00
int xp_awk_closeextio (
xp_awk_run_t* run, const xp_char_t* name, int* errnum);
2006-06-21 11:45:26 +00:00
2006-06-21 15:37:51 +00:00
void xp_awk_clearextio (xp_awk_run_t* run);
2006-06-21 11:45:26 +00:00
#ifdef __cplusplus
}
#endif
#endif