home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / dvips / debug.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-29  |  301 b   |  17 lines

  1. /* 
  2.  * Here's some stuff for debugging dvips.
  3.  */
  4.  
  5. #ifdef DEBUG
  6.  
  7. #define dd(darg)    ((darg)&debug_flag)
  8.  
  9. #define D_SPECIAL        (1<<0)
  10. #define D_PATHS            (1<<1)
  11. #define D_FONTS            (1<<2)
  12. #define D_PAGE            (1<<3)
  13. #define D_HEADER                (1<<4)
  14. #define D_COMPRESS              (1<<5)
  15.  
  16. #endif /* DEBUG */
  17.