ref: e9ab93461d0e7e043fadda396748c509b2cad5d3
dir: /lib/c/vsprintf.c/
#include <limits.h> #include <stdarg.h> #include <stdio.h> #undef vsprintf int vsprintf(char * restrict s, const char * restrict fmt, va_list va) { return vsnprintf(s, SIZE_MAX, fmt, va); }