home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / t / tex / !dvips / Documents / Fonts / Source / h / debug next >
Encoding:
Text File  |  1994-10-23  |  424 b   |  21 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. #define D_FILES            (1<<6)
  16. #define D_MEM                   (1<<7)
  17.  
  18. #define fopen my_real_fopen
  19. extern FILE *my_real_fopen() ;
  20. #endif /* DEBUG */
  21.