#include #include #if __STDC_VERSION__ < 199901L #define vswscanf __vswscanf #include "vswscanf.c" #endif int swscanf(const wchar_t * restrict s, const wchar_t * restrict format, ...) { va_list ap; va_start(ap, format); int ret = vswscanf(s, format, ap); va_end(ap); return ret; } /* STDC(199409) */