kolibrios/programs/develop/libraries/kolibri-libc/source/stdio/vsnprintf.c

6 lines
167 B
C
Raw Normal View History

//#include "format_print.h"
int vsnprintf(char* buffer, size_t count, const char* format, va_list va)
{
return _vsnprintf(_out_buffer, buffer, count, format, va);
}