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 >
Text File  |  1979-12-31  |  401b  |  24 lines

  1. /*  >  DPRINTF.H
  2.  *
  3.  *  dprintf -- Header
  4.  *  (C)  April 4  1990  Asaf Arkin
  5.  *  All rights reserved
  6.  */
  7.  
  8.  
  9.  
  10. /*  Uncomment this, if vdprintf is to be used.
  11.  */
  12. #include  <stdarg.h>
  13. #define  STDARG_Included
  14.  
  15.  
  16.  
  17. typedef  int (*dprintf_fp)(int);
  18. int    dprintf(dprintf_fp, const char *, ...);
  19. #ifdef  STDARG_Included
  20. int   vdprintf(dprintf_fp, const char *, va_list Args);
  21. #endif
  22.  
  23.  
  24.