home *** CD-ROM | disk | FTP | other *** search
/ pc.louisiana.edu/pub/unix/ / Louisiana_UNIX.tar / Louisiana_UNIX / xspread3.0.zoo / version.c < prev    next >
C/C++ Source or Header  |  1994-06-02  |  2KB  |  54 lines

  1. #include "config.h"
  2.  
  3. /*  At the moment XSpread and SC are two different programs
  4.  *  So the XSpread version number is still less than then SC version
  5.  */
  6.  
  7. char *version = " XSpread v3.0   Based on Sc 6.21";
  8.  
  9. /*
  10.  * CODE REVISION NUMBER:
  11.  *
  12.  * The part after the first colon, except the last char, appears on the screen.
  13.  */
  14.  
  15. char *rev = "$Revision: 6.21 alpha5 $";
  16.  
  17. print_help()
  18. {
  19. #if defined(CASEINSENSITIVECMDLINE)
  20.    printf(
  21.    "xspread [-h] [-c] [-m] [-n] [-x] [-fn font] [filename]\n\n");
  22. #else    /* Peter Doemel, 11-Feb-1993 */
  23.    printf(
  24.    "xspread [-h] [-c] [-m] [-n] [-x] [-N] [-C] [-R] [-fn font] [filename]\n\n");
  25. #endif
  26.  
  27.    printf(
  28.    "         -c:  Column order recalculation.           Default: row order.\n");
  29.    printf(
  30.    "         -m:  Manual recalculation.                 Default: automatic.\n");
  31.    printf(
  32.    "         -n:  Standard Data entry mode.             Default: numeric.\n");
  33. /* printf(
  34.    "         -r:  Row order recalculation.              Default: row order.\n");
  35. */ /* commented by Peter Doemel, 11-Feb-1993 */
  36.    printf(
  37.    "         -x:  File read/write use encryption.       Default: off.\n");
  38. #if !defined(CASEINSENSITIVECMDLINE)
  39.    printf(
  40.    "         -N:  Don't show cursor.                    Default: show.\n");
  41.    printf(
  42.    "         -C:  Action on Newline: column (go down).  Default: none.\n");
  43.    printf(
  44.    "         -R:  Action on Newline: row (go right).    Default: none.\n");
  45. #endif
  46.    printf(
  47.    "        -fn:  Change the font.\n\n");
  48.    printf(
  49.    "         -h:  Command line help.\n");
  50.    printf(
  51.    "Options can be changed through ctrl-t toggle commands.\n\n");
  52.  
  53.