diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-14 18:56:06 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-14 18:56:06 +0200 |
commit | a892293556960b0813098ede7da7a34774da7d3c (patch) | |
tree | 85f4bd5e1a77a1f25f6a5285430a617a5e1bd4f9 /awk.h | |
parent | 151fc88916ca2d6fb1fc3b945dbd8912ff162c94 (diff) | |
download | egawk-a892293556960b0813098ede7da7a34774da7d3c.tar.gz egawk-a892293556960b0813098ede7da7a34774da7d3c.tar.bz2 egawk-a892293556960b0813098ede7da7a34774da7d3c.zip |
API cleanups and doc additions.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -885,7 +885,7 @@ typedef struct exp_instruction { #define initval x.xn typedef struct iobuf { - IOBUF_PUBLIC public; /* exposed to extensions */ + awk_input_buf_t public; /* exposed to extensions */ char *buf; /* start data buffer */ char *off; /* start of current record in buffer */ char *dataend; /* first byte in buffer to hold new data, @@ -1536,7 +1536,7 @@ extern int os_devopen(const char *name, int flag); extern void os_close_on_exec(int fd, const char *name, const char *what, const char *dir); extern int os_isatty(int fd); extern int os_isdir(int fd); -extern int os_isreadable(const IOBUF_PUBLIC *iobuf, bool *isdir); +extern int os_isreadable(const awk_input_buf_t *iobuf, bool *isdir); extern int os_is_setuid(void); extern int os_setbinmode(int fd, int mode); extern void os_restore_mode(int fd); |