#include int vsprintf(char *buf, const char *restrict format, va_list arg) { return vsnprintf(buf, (size_t)-1, format, arg); }