00001 /* 00002 * vscanf.c - read formatted input from the standard input stream 00003 */ 00004 00005 #include <stdio.h> 00006 #include <stdarg.h> 00007 #include "loc_incl.h" 00008 00009 int 00010 vscanf(const char *format, va_list ap) 00011 { 00012 return _doscan(stdin, format, ap); 00013 }
1.4.6