blob: b8da63b447f5d5c718329570e8fbd163b0113ccd (
plain)
1
2
3
4
5
6
|
#include <stdio.h> // for vsnprintf, vsprintf, size_t, va_list
int vsprintf(char *restrict s, const char *restrict format, va_list ap)
{
return vsnprintf(s, (size_t)-1, format, ap);
}
|