Sign in
mojo
/
mojo-tools
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
stdio
/
vscanf.c
blob: 43892f01b304d97a55a8c4ff512140a66edb11bf [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<stdarg.h>
#include
"libc.h"
int
vscanf
(
const
char
*
restrict fmt
,
va_list ap
)
{
return
vfscanf
(
stdin
,
fmt
,
ap
);
}
weak_alias
(
vscanf
,
__isoc99_vscanf
);