source: trunk/minix/lib/stdio/vscanf.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

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
9int
10vscanf(const char *format, va_list ap)
11{
12 return _doscan(stdin, format, ap);
13}
Note: See TracBrowser for help on using the repository browser.