home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
qc_prog
/
chap12
/
keys.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1988-04-07
|
372 b
|
19 lines
/* keys.c -- The keyboard input-handling routines */
/* for the texed editor. */
Edit_file()
{
char ch;
printf("\nYou are now in the editor.\n");
printf("Press 'Q' to exit back to main menu.\n");
do
{
ch = getch();
putch(ch);
} while (ch != 'Q');
printf("\n\n");
}