/* * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands. * See the copyright notice in the ACK home directory, in the file "Copyright". */ /* $Id$ */ #ifndef __PRINT_INCLUDED__ #define __PRINT_INCLUDED__ #include #if __STDC__ #include #else #include #endif _PROTOTYPE(void print, (char *fmt, ...)); _PROTOTYPE(void fprint, (File *f, char *fmt, ...)); _PROTOTYPE(void doprnt, (File *f, char *fmt, va_list ap)); _PROTOTYPE(int _format, (char *buf, char *fmt, va_list ap)); _PROTOTYPE(char *sprint, (char *buf, char *fmt, ...)); char *long2str(long val, int base); #endif /* __PRINT_INCLUDED__ */