xref: /minix3/lib/libc/stdio/vscanf.c (revision b6cbf7203b080219de306404f8022a65b7884f33)
1 /*
2  * vscanf.c - read formatted input from the standard input stream
3  */
4 
5 #include	<stdio.h>
6 #include	<stdarg.h>
7 #include	"loc_incl.h"
8 
9 int
10 vscanf(const char *format, va_list ap)
11 {
12 	return _doscan(stdin, format, ap);
13 }
14