/* ============================================================================= define.h -- Typical miscellaneous C definitions. Version 1 -- 1985-01-01 -- Atari Copyright 1985 Atari Corp. ============================================================================= */ #define NIL 0 /* Nil Pointer */ #define NO 0 /* "FALSE" */ #define YES 1 /* "TRUE" */ #define TRUE 1 #define FALSE 0 #define EOS '\0' /* End of String marker */ #define EOF (-1) /* End of File marker */ #define NEWLINE '\n' /* Carriage Return */ #define FAILURE (-1) /* Function failure return val */ #define SUCCESS (0) /* Function success return val */ #define FOREVER for(;;) /* Infinite loop declaration */ #ifndef NULL /* Make sure NULL gets defined */ #define NULL '\0' #endif