Files

7 lines
156 B
C
Raw Permalink Normal View History

#include <stdio.h>
#include <limits.h>
int vsprintf(char *restrict s, const char *restrict fmt, va_list ap) {
return vsnprintf(s, INT_MAX, fmt, ap);
}