home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / TOP / USR / SRC / yahtzee.t.Z / yahtzee.t / opthelp.c < prev    next >
Text File  |  1988-07-28  |  415b  |  17 lines

  1. /* opthelp.c
  2.  *    dianostic for bad options.
  3.  */
  4. option_message(prog_name)
  5.  
  6. char *prog_name;
  7.  
  8.     {
  9.     printf("%s: The game of Yahtzee\n\n", prog_name);
  10.     printf("options:\n\n");
  11.     printf("%s [-s] [-h] [-N] [-d]\n\n", prog_name);
  12.     printf(" -s  print high-score file to stdout\n");
  13.     printf(" -h  get this message\n");
  14.     printf(" -N  play games non-stop (forever)\n");
  15.     printf(" -d  don't use standout mode of terminal\n");
  16.     }
  17.