2007-05-02 01:07:00 +00:00
|
|
|
/*
|
2008-09-05 04:58:08 +00:00
|
|
|
* $Id: extio.h 363 2008-09-04 10:58:08Z baconevi $
|
2007-05-02 01:07:00 +00:00
|
|
|
*
|
|
|
|
* {License}
|
|
|
|
*/
|
|
|
|
|
2008-09-05 04:58:08 +00:00
|
|
|
#ifndef _ASE_LIB_AWK_EXTIO_H_
|
|
|
|
#define _ASE_LIB_AWK_EXTIO_H_
|
2007-05-02 01:07:00 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int ase_awk_readextio (
|
|
|
|
ase_awk_run_t* run, int in_type,
|
|
|
|
const ase_char_t* name, ase_str_t* buf);
|
|
|
|
|
|
|
|
int ase_awk_writeextio_val (
|
|
|
|
ase_awk_run_t* run, int out_type,
|
|
|
|
const ase_char_t* name, ase_awk_val_t* v);
|
|
|
|
|
|
|
|
int ase_awk_writeextio_str (
|
|
|
|
ase_awk_run_t* run, int out_type,
|
|
|
|
const ase_char_t* name, ase_char_t* str, ase_size_t len);
|
|
|
|
|
|
|
|
int ase_awk_flushextio (
|
|
|
|
ase_awk_run_t* run, int out_type, const ase_char_t* name);
|
|
|
|
|
|
|
|
int ase_awk_nextextio_read (
|
|
|
|
ase_awk_run_t* run, int in_type, const ase_char_t* name);
|
|
|
|
|
|
|
|
int ase_awk_nextextio_write (
|
|
|
|
ase_awk_run_t* run, int out_type, const ase_char_t* name);
|
|
|
|
|
|
|
|
int ase_awk_closeextio_read (
|
|
|
|
ase_awk_run_t* run, int in_type, const ase_char_t* name);
|
|
|
|
int ase_awk_closeextio_write (
|
|
|
|
ase_awk_run_t* run, int out_type, const ase_char_t* name);
|
|
|
|
int ase_awk_closeextio (ase_awk_run_t* run, const ase_char_t* name);
|
|
|
|
|
|
|
|
void ase_awk_clearextio (ase_awk_run_t* run);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|