IOBuf
extern int zconversion(Conversion *, IOBuf *);
extern int yescSeq(GxCntl *, IOBuf *);
extern IOBuf * xIOBuf();
extern void xdeIOBuf(IOBuf *);
extern int xgetc(IOBuf *);
extern void xbackup(IOBuf *, int);
extern int xputc(IOBuf *, int);
extern int xoutsize(IOBuf *);
zconversion(Conversion *this, IOBuf *ioobj) {
yescSeq(GxCntl *this, IOBuf *obj) {
IOBuf *
IOBuf *ret = (IOBuf *) malloc(sizeof (IOBuf));
xdeIOBuf(IOBuf *this) {
xgetc(IOBuf *this) {
xputc(IOBuf *this, int c) {
xbackup(IOBuf *this, int c) { this->mybuf[this->bufc++] = c; }
xoutsize(IOBuf *this) { return (this->outsize); }
IOBuf *iobuf;