#ifndef OUTPUT_INCL
#include <stdarg.h>
struct output {
char *nextc;
int nleft;
int bufsize;
char *buf;
short fd;
short flags;
#ifndef SMALL
struct output *chain;
#endif
};
#define OUTPUT_ERR 0x01
#define OUTPUT_CLONE 0x02
extern struct output output;
extern struct output errout;
extern struct output memout;
extern struct output *out1;
extern struct output *out2;
#ifdef SMALL
#define outx out2
#else
extern struct output *outx;
#endif
void open_mem(char *, int, struct output *);
void out1str(const char *);
void out2str(const char *);
void outstr(const char *, struct output *);
void out2shstr(const char *);
#ifdef SMALL
#define outxstr out2str
#define outxshstr out2shstr
#else
void outxstr(const char *);
void outxshstr(const char *);
#endif
void outshstr(const char *, struct output *);
void emptyoutbuf(struct output *);
void flushall(void);
void flushout(struct output *);
void freestdout(void);
void outfmt(struct output *, const char *, ...) __printflike(2, 3);
void out1fmt(const char *, ...) __printflike(1, 2);
#ifdef DEBUG
void debugprintf(const char *, ...) __printflike(1, 2);
#endif
void fmtstr(char *, size_t, const char *, ...) __printflike(3, 4);
void doformat(struct output *, const char *, va_list) __printflike(2, 0);
int xwrite(int, char *, int);
#ifdef SMALL
#define xtracefdsetup(x) do { break; } while (0)
#define xtrace_clone(x) do { break; } while (0)
#define xtrace_pop() do { break; } while (0)
#else
void xtracefdsetup(int);
void xtrace_clone(int);
void xtrace_pop(void);
#endif
#define outc(c, file) (--(file)->nleft < 0? (emptyoutbuf(file), *(file)->nextc++ = (c)) : (*(file)->nextc++ = (c)))
#define out1c(c) outc(c, out1)
#define out2c(c) outc(c, out2)
#define outxc(c) outc(c, outx)
#define clr_err(file) ((file)->flags &= ~OUTPUT_ERR)
#define io_err(file) ((file)->flags & OUTPUT_ERR)
#define OUTPUT_INCL
#endif