]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/scan.c
First work towards scanf().
[pdclib] / functions / _PDCLIB / scan.c
1 /* $Id$ */
2
3 /* _PDCLIB_scan( const char *, struct _PDCLIB_status_t * )
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #include <stdio.h>
10
11 const char * _PDCLIB_scan( const char * spec, struct _PDCLIB_status_t * status )
12 {
13     return ++spec;
14 }
15
16 #ifdef TEST
17 #include <_PDCLIB_test.h>
18
19 int main( void )
20 {
21     TESTCASE( NO_TESTDRIVER );
22     return TEST_RESULTS;
23 }
24
25 #endif