home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Education
/
collectionofeducationcarat1997.iso
/
SCIENCE
/
STAGES12.ZIP
/
DEFINES.BAK
< prev
next >
Wrap
Text File
|
1991-04-21
|
992b
|
26 lines
#define TRUE 1
#define FALSE 0
#define PC 1 /* =1 if compiling on a PC */
#define DEBUG 3 /* =1 if debugging prints wanted */
#define VERBOSE 1 /* =1, send more o/p to hardcopy */
#define MAXLEN 90 /* max length of any 1 string */
#define MAXIP 40 /* max # cellnames allowed for one line
of interactive input */
#define MAXIPLEN 20 /* max length of any 1 user input str */
#define MAXLINES 4 /* max # ref lines in a stage data file */
#define FILELEN 40 /* mas length of filenames */
#define LNWID 75 /* terminal width, chars */
#define INVALID -999 /* reserved error-marking value */
#define ERRSTR "** Error! "
#define NULLERRSTR " "
#define VERSION "V1.2" /* version info string */
#define TIME 30000 /* used in a for-loop, to pause while
displaying data in debug mode */
/* this is how ERRSTR is used:
Input the cycle stage data filename:
==> asdf
** Error! : File <asdf> does not exist.
*/