home *** CD-ROM | disk | FTP | other *** search
/ Collection of Education / collectionofeducationcarat1997.iso / SCIENCE / STAGES12.ZIP / DEFINES.BAK < prev    next >
Text File  |  1991-04-21  |  992b  |  26 lines

  1. #define TRUE        1
  2. #define FALSE        0
  3. #define    PC        1    /* =1 if compiling on a PC        */
  4. #define DEBUG        3    /* =1 if debugging prints wanted    */
  5. #define VERBOSE     1    /* =1, send more o/p to hardcopy    */
  6. #define MAXLEN        90    /* max length of any 1 string        */
  7. #define MAXIP        40    /* max # cellnames allowed for one line
  8.                    of interactive input            */
  9. #define MAXIPLEN    20    /* max length of any 1 user input str     */
  10. #define MAXLINES    4    /* max # ref lines in a stage data file    */
  11. #define FILELEN        40    /* mas length of filenames        */
  12. #define    LNWID        75    /* terminal width, chars        */
  13. #define INVALID        -999    /* reserved error-marking value        */
  14. #define ERRSTR        "** Error! "
  15. #define NULLERRSTR    "          "
  16. #define VERSION        "V1.2"    /* version info string            */
  17. #define TIME        30000    /* used in a for-loop, to pause while
  18.                    displaying data in debug mode    */
  19.  
  20. /*    this is how ERRSTR is used:
  21.  
  22.      Input the cycle stage data filename:
  23.              ==> asdf
  24.      ** Error! : File <asdf> does not exist.
  25. */
  26.