source:
trunk/minix/lib/stdio/scanf.c@
15
| Last change on this file since 15 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 387 bytes | |
| Line | |
|---|---|
| 1 | /* |
| 2 | * scanf.c - read formatted input from the standard input stream |
| 3 | */ |
| 4 | /* $Header: /cvsup/minix/src/lib/stdio/scanf.c,v 1.1.1.1 2005/04/21 14:56:36 beng Exp $ */ |
| 5 | |
| 6 | #include <stdio.h> |
| 7 | #include <stdarg.h> |
| 8 | #include "loc_incl.h" |
| 9 | |
| 10 | int |
| 11 | scanf(const char *format, ...) |
| 12 | { |
| 13 | va_list ap; |
| 14 | int retval; |
| 15 | |
| 16 | va_start(ap, format); |
| 17 | |
| 18 | retval = _doscan(stdin, format, ap); |
| 19 | |
| 20 | va_end(ap); |
| 21 | |
| 22 | return retval; |
| 23 | } |
| 24 | |
| 25 |
Note:
See TracBrowser
for help on using the repository browser.