home *** CD-ROM | disk | FTP | other *** search
- #include <stdarg.h>
-
- int sprintf(char*,
- const char*,
- ...);
- int vsprintf(char*,
- const char*,
- va_list);
-
- void tprintf(const char*,
- ...);
- void vtprintf(const char*,
- va_list);
-
- void* hprintf(char *FmtString,
- void* PutChProc,
- char *PutChData,
- ...);
-
- void* vhprintf(char *FmtString,
- void* PutChProc,
- char *PutChData,
- va_list args);
-