]> pd.if.org Git - pdclib/blobdiff - functions/stdio/getc.c
Fixes #45.
[pdclib] / functions / stdio / getc.c
diff --git a/functions/stdio/getc.c b/functions/stdio/getc.c
new file mode 100644 (file)
index 0000000..a459c22
--- /dev/null
@@ -0,0 +1,29 @@
+/* $Id$ */
+
+/* getc( FILE * )
+
+   This file is part of the Public Domain C Library (PDCLib).
+   Permission is granted to use, modify, and / or redistribute at will.
+*/
+
+#include <stdio.h>
+
+#ifndef REGTEST
+
+int getc( struct _PDCLIB_file_t * stream )
+{
+    return fgetc( stream );
+}
+
+#endif
+
+#ifdef TEST
+#include <_PDCLIB_test.h>
+
+int main( void )
+{
+    /* Testing covered by ftell.c */
+    return TEST_RESULTS;
+}
+
+#endif