]> pd.if.org Git - pdclib/blob - functions/stdio/getchar.c
Porting current working set from CVS.
[pdclib] / functions / stdio / getchar.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* getchar( void )
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
13 #ifndef REGTEST
14
15 int getchar( void )
16 {
17     return fgetc( stdin );
18 }
19
20 #endif
21
22 #ifdef TEST
23 #include <_PDCLIB_test.h>
24
25 int main( void )
26 {
27     TESTCASE( NO_TESTDRIVER );
28     return TEST_RESULTS;
29 }
30
31 #endif