const.h 718 B

1234567891011121314151617181920212223242526
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. /* $Id$ */
  6. typedef int bool;
  7. #define FALSE 0
  8. #define TRUE 1
  9. #define WIDTH 8 /* Number of bits in a byte. */
  10. #define BYTEMASK 0xFF /* Mask to get low order byte. */
  11. #define RFLAG 0x01 /* -r flag given. */
  12. #define SFLAG 0x02 /* -s flag given. */
  13. #define CFLAG 0x04 /* -c flag given. */
  14. #define NFLAG 0x08 /* -n flag given. */
  15. #define PLAIN 0 /* Input file is a normal file. */
  16. #define ARCHIVE 1 /* Input file is an archive. */
  17. #define FIRST 1 /* Pass number. */
  18. #define SECOND 2 /* Idem. */
  19. #define BADOFF ((ind_t)-1)