BizHawk/waterbox/libc/functions/stdio/getchar.c

35 lines
496 B
C

/* getchar( void )
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
#include "_PDCLIB_io.h"
int _PDCLIB_getchar_unlocked( void )
{
return _PDCLIB_fgetc_unlocked( stdin );
}
int getchar( void )
{
return fgetc( stdin );
}
#endif
#ifdef TEST
#include "_PDCLIB_test.h"
int main( void )
{
/* Testing covered by ftell.c */
return TEST_RESULTS;
}
#endif