home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
listings
/
v_09_09
/
9n09020c
< prev
next >
Wrap
Text File
|
1991-07-09
|
460b
|
15 lines
void help(void)
{
printf("\n The action codes are:\n");
printf("\t0 - Exit this program\n");
printf("\t1 - Produce this help message\n");
printf("\t2 - Add a new node to the list\n");
printf("\t3 - Display a user-selected node\n");
printf("\t4 - Remove a user-selected node\n");
printf("\t5 - Show all nodes in ascending order\n");
printf("\t6 - Show all nodes in descending order\n");
printf("\t7 - Count the number of nodes\n");
}