Subversion Repositories Kolibri OS

Rev

Rev 647 | 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 vsnprintf(char *dest, size_t size, const char *format, va_list ap)
  6. {
  7.   return format_print(dest,size, format, ap);
  8. }
  9.  
  10.  
  11. int vsprintf (char * dest, const char * format, va_list ap )
  12. {
  13.   return format_print(dest, 4096, format, ap);
  14. }
  15.