home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib1
/
v_01_04
/
1n04056a
< 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
Text File
|
1995-11-01
|
517 b
|
23 lines
init_menu();
while (choice != EXIT_PROGRAM)
{
choice = INVALID;
key = Input(&x, &y);
choice = disp_menu(key, x, y);
key = 0;
switch (choice)
{
case FIRST_CHOICE:
execute_first();
break;
case SECOND_CHOICE:
execute_second();
break;
etc.
}
}