vsprintf.c 153 B

1234567
  1. #include <stdio.h>
  2. #include <limits.h>
  3. int vsprintf(char *restrict s, const char *restrict fmt, va_list ap)
  4. {
  5. return vsnprintf(s, INT_MAX, fmt, ap);
  6. }