home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.7z / ftp.whtech.com / emulators / v9t9 / linux / sources / V9t9 / source / OSLib / StringUtils.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-10-19  |  334 b   |  11 lines

  1. #include <stdarg.h>
  2.  
  3. #include "centry.h"
  4.  
  5. /*    Print to a memory buffer and allocate a larger one as needed.
  6.     If return is != buf, we allocated, and the caller must free. */
  7. char    *mvprintf(char *mybuf, unsigned len, const char *format, va_list va);
  8. char    *mprintf(char *mybuf, unsigned len, const char *format, ...);
  9.  
  10. #include "cexit.h"
  11.