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