Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include "kolibc.h"
  2.  
  3. int _doprnt(char *dest, size_t maxlen, const char *fmt,
  4.             va_list argp);
  5.  
  6.  
  7. int sprintf(char *dest, const char *format,...)
  8. {
  9.   va_list arg;
  10.   va_start (arg, format);
  11.   return _doprnt(dest,512, format, arg);
  12. }
  13.  
  14.  
  15.