1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include <stdarg.h> #include <wchar.h> #include "libc.h" int swscanf(const wchar_t *restrict s, const wchar_t *restrict fmt, ...) { int ret; va_list ap; va_start(ap, fmt); ret = vswscanf(s, fmt, ap); va_end(ap); return ret; } weak_alias(swscanf,__isoc99_swscanf);