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