Subversion Repositories Kolibri OS

Rev

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

  1. #include <kolibrisys.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4.  
  5. int format_print(char *dest, size_t maxlen, const char *fmt,
  6.             va_list argp);
  7.  
  8.  
  9. int vsnprintf(char *dest, size_t size,const char *format,va_list ap)
  10. {
  11.  
  12.   return format_print(dest,size, format, ap);
  13. }
  14.  
  15.  
  16.