home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
small_c
/
sc88.arc
/
GETCHAR.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1987-10-04
|
256 b
|
9 lines
#define NOCCARGC /* no argument count passing */
#include stdio.h
/*
** Get next character from standard input.
*/
getchar() {
return (fgetc(stdin));
}