]> pd.if.org Git - pdclib/blob - functions/stdio/vfscanf.c
Porting current working set from CVS.
[pdclib] / functions / stdio / vfscanf.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* vfscanf( FILE *, const char *, va_list )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #include <stdio.h>
12 #include <stdarg.h>
13
14 #ifndef REGTEST
15
16 int vfscanf( FILE * _PDCLIB_restrict stream, const char * _PDCLIB_restrict format, va_list arg )
17 {
18     /* TODO: Implement using vsscanf() reading from file buffer */
19     return 0;
20 }
21
22 #endif
23
24 #ifdef TEST
25 #include <_PDCLIB_test.h>
26
27 int main( void )
28 {
29     TESTCASE( NO_TESTDRIVER );
30     return TEST_RESULTS;
31 }
32
33 #endif