Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
stdio
/
fscanf.c
blob: f639e118b0dae83a7177ae75a4a235b47d23c3a2 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<stdarg.h>
int
fscanf
(
FILE
*
restrict f
,
const
char
*
restrict fmt
,
...)
{
int
ret
;
va_list ap
;
va_start
(
ap
,
fmt
);
ret
=
vfscanf
(
f
,
fmt
,
ap
);
va_end
(
ap
);
return
ret
;
}
weak_alias
(
fscanf
,
__isoc99_fscanf
);