diff options
Diffstat (limited to 'io/fscanf.c')
-rw-r--r-- | io/fscanf.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/io/fscanf.c b/io/fscanf.c new file mode 100644 index 0000000..575a5f5 --- /dev/null +++ b/io/fscanf.c @@ -0,0 +1,10 @@ +#include "io.h" + +int fscanf(FILE *stream, char const *restrict format, ...) +{ + va_list arg; + va_start(arg, format); + int lenght = _vfscanf_wrap(stream, format, arg); + va_end(arg); + return lenght; +} |