1 2 3 4 5 6 7
#include <stdio.h> #include <stdarg.h> int vscanf(const char *restrict fmt, va_list ap) { return vfscanf(stdin, fmt, ap); }