home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_10 / 9n10026b < prev    next >
Text File  |  1991-08-14  |  635b  |  15 lines

  1.  
  2. void help(void)
  3. {
  4.         printf("\n   The action codes are:\n");
  5.         printf("\t           Exit - Exit this program\n");
  6.         printf("\t           Help - Produce this help message\n");
  7.         printf("\t       Add node - Add a new node to the list\n");
  8.         printf("\t   Display node - Display a user-selected node\n");
  9.         printf("\t    Remove node - Remove a user-selected node\n");
  10.         printf("\t Dump ascending - Show all nodes in ascending order\n");
  11.         printf("\tDump descending - Show all nodes in descending order\n");
  12.         printf("\t    Count nodes - Count the number of nodes\n");
  13. }
  14.  
  15.