/* %Z%%M% %I% %E% */ /* * Copyright (c) 1991, 1992, 1993, 1994, 1995 by Wayne C. Gramlich. * All rights reserved. * * Permission to use, copy, modify, distribute, and sell this software * for any purpose is hereby granted without fee provided that the above * copyright notice and this permission are retained. The author makes * no representations about the suitability of this software for any purpose. * It is provided "as is" without express or implied warranty. */ /* This file declares some printing routines: */ #ifndef OUT_EXPORTS_H #define OUT_EXPORTS_H #ifndef HEAP_TYPES_H #include "heap_types.h" #endif #ifndef STR_TYPES_H #include "str_types.h" #endif #ifndef UNIX_STDIO_H #include "unix_stdio.h" #endif #ifndef UNIX_STDARG_H #include "unix_stdarg.h" #endif extern void out(Stdio, Str, ...); extern int out_count_read(Stdio); extern void out_count_write(Stdio, int); extern void out_format(Stdio, Str, va_list); extern void out_initialize(Heap); extern void out_marker_read(Stdio, Str); extern void out_marker_write(Stdio, Str); extern void out_quoted_string(Stdio, Str, char, int); #endif /* OUT_EXPORTS_H */