home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tools / crossref / cref / style.h < prev    next >
C/C++ Source or Header  |  1988-11-23  |  166b  |  13 lines

  1. #ifndef STYLE_H
  2. #define STYLE_H
  3.  
  4. #define EOS         '\0'  /* End Of String */
  5. #define MAXLINE     255
  6.  
  7. typedef enum
  8.     {
  9.     FALSE, TRUE
  10.     } boolean;
  11.     
  12. #endif
  13.