7 lines
142 B
C
7 lines
142 B
C
#include <stdio.h>
|
|
|
|
int vsprintf(char *buf, const char *restrict format, va_list arg)
|
|
{
|
|
return vsnprintf(buf, (size_t)-1, format, arg);
|
|
}
|