home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
vol_300
/
329_01
/
dprintf.h
< prev
next >
Wrap
Text File
|
1979-12-31
|
401b
|
24 lines
/* > DPRINTF.H
*
* dprintf -- Header
* (C) April 4 1990 Asaf Arkin
* All rights reserved
*/
/* Uncomment this, if vdprintf is to be used.
*/
#include <stdarg.h>
#define STDARG_Included
typedef int (*dprintf_fp)(int);
int dprintf(dprintf_fp, const char *, ...);
#ifdef STDARG_Included
int vdprintf(dprintf_fp, const char *, va_list Args);
#endif