source:
trunk/minix/lib/stdio/vscanf.c@
10
| Last change on this file since 10 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 219 bytes | |
| Line | |
|---|---|
| 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 | } |
Note:
See TracBrowser
for help on using the repository browser.