]> pd.if.org Git - pdclib/blob - functions/stdio/getc.c
b0c56f4c5cf3504f63a1785e32503b5783c14a8a
[pdclib] / functions / stdio / getc.c
1 /* $Id$ */
2
3 /* getc( FILE * )
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 #ifndef REGTEST
12 #include <_PDCLIB_io.h>
13    
14 int _PDCLIB_getc_unlocked( FILE * stream )
15 {
16     return _PDCLIB_fgetc_unlocked( stream );
17 }
18
19 int getc( FILE * stream )
20 {
21     return fgetc( stream );
22 }
23
24 #endif
25
26 #ifdef TEST
27 #include <_PDCLIB_test.h>
28
29 int main( void )
30 {
31     /* Testing covered by ftell.c */
32     return TEST_RESULTS;
33 }
34
35 #endif