Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
third_party
/
musl
/
src
/
stdio
/
wscanf.c
blob: 80412252346d30021b60674641c3d4044834cd64 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<stdarg.h>
#include
<wchar.h>
#include
"libc.h"
int
wscanf
(
const
wchar_t
*
restrict fmt
,
...)
{
int
ret
;
va_list ap
;
va_start
(
ap
,
fmt
);
ret
=
vwscanf
(
fmt
,
ap
);
va_end
(
ap
);
return
ret
;
}
weak_alias
(
wscanf
,
__isoc99_wscanf
);