File: debug.h

package info (click to toggle)
tetex-bin 2.0.2-30sarge5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 50,108 kB
  • ctags: 38,418
  • sloc: ansic: 295,045; cpp: 54,320; sh: 25,684; perl: 8,806; makefile: 3,892; yacc: 2,235; pascal: 1,381; awk: 1,103; asm: 851; lex: 833; lisp: 527; sed: 518; csh: 47
file content (23 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* 
 * Here's some stuff for debugging dvips.
 */

#ifdef DEBUG

#define dd(darg)	((darg)&debug_flag)

#define D_SPECIAL		(1<<0)
#define D_PATHS			(1<<1)
#define D_FONTS			(1<<2)
#define D_PAGE			(1<<3)
#define D_HEADER                (1<<4)
#define D_COMPRESS              (1<<5)
#define D_FILES			(1<<6)
#define D_MEM                   (1<<7)
#define D_CONFIG                (1<<8)

#ifndef KPATHSEA
#define fopen my_real_fopen
extern FILE *my_real_fopen() ;
#endif
#endif /* DEBUG */