Pristine Ack-5.5
[Ack-5.5.git] / modules / src / print / print.h
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 /* $Id: print.h,v 1.4 1994/06/24 11:20:38 ceriel Exp $ */
6
7 #ifndef __PRINT_INCLUDED__
8 #define __PRINT_INCLUDED__
9
10 #include <ansi.h>
11 #if __STDC__
12 #include <stdarg.h>
13 #else
14 #include <varargs.h>
15 #endif
16
17 _PROTOTYPE(void print, (char *fmt, ...));
18 _PROTOTYPE(void fprint, (File *f, char *fmt, ...));
19 _PROTOTYPE(void doprnt, (File *f, char *fmt, va_list ap));
20 _PROTOTYPE(int _format, (char *buf, char *fmt, va_list ap));
21 _PROTOTYPE(char *sprint, (char *buf, char *fmt, ...));
22
23 #endif /* __PRINT_INCLUDED__ */