Subversion Repositories Kolibri OS

Rev

Rev 647 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
647 andrew_pro 1
#include 
2
#include 
3
#include 
4
 
6433 siemargl 5
int vsnprintf(char *dest, size_t size, const char *format, va_list ap)
647 andrew_pro 6
{
7
  return format_print(dest,size, format, ap);
8
}
9
 
10
 
6433 siemargl 11
int vsprintf (char * dest, const char * format, va_list ap )
12
{
13
  return format_print(dest, 4096, format, ap);
14
}