home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / System / MorphOS / Developer / include / public / proto / libstringio / stringio_protos.h
Encoding:
C/C++ Source or Header  |  2000-11-02  |  540 b   |  24 lines

  1. #include        <stdarg.h>
  2.  
  3. int    sprintf(char*,
  4.                 const char*,
  5.                 ...);
  6. int    vsprintf(char*,
  7.                  const char*,
  8.                  va_list);
  9.  
  10. void    tprintf(const char*,
  11.                 ...);
  12. void    vtprintf(const char*,
  13.                  va_list);
  14.  
  15. void*    hprintf(char            *FmtString,
  16.                 void*            PutChProc,
  17.                 char            *PutChData,
  18.                 ...);
  19.  
  20. void*    vhprintf(char        *FmtString,
  21.                  void*        PutChProc,
  22.                  char        *PutChData,
  23.                  va_list    args);
  24.