input.h 346 B

12345678910111213
  1. /* $Header$ */
  2. /* INPUT PRIMITIVES */
  3. #define LoadChar(dest) ((dest = *ipp++) || (dest = loadbuf()))
  4. #define PushBack() (ipp--)
  5. /* EOF may be defined as -1 in most programs but the character -1 may
  6. be expanded to the int -1 which causes troubles at the indexing in
  7. the class or boolean arrays.
  8. */
  9. #define EOI (0200)
  10. extern char *ipp;