diff options
Diffstat (limited to 'io/vscanf.c')
-rw-r--r-- | io/vscanf.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/io/vscanf.c b/io/vscanf.c new file mode 100644 index 0000000..edeeacd --- /dev/null +++ b/io/vscanf.c @@ -0,0 +1,6 @@ +#include "io.h" + +int vscanf(char const *restrict format, va_list arg) +{ + return _vfscanf_wrap(_stdstream_wrap(stream_input), format, arg); +} |