File: debug.h

package info (click to toggle)
nn 6.5.1-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,472 kB
  • ctags: 4,518
  • sloc: ansic: 35,126; sh: 1,489; makefile: 214; awk: 138
file content (23 lines) | stat: -rw-r--r-- 564 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 *	(c) Copyright 1990, Kim Fabricius Storm.  All rights reserved.
 *
 *	Debug flags and defines
 *
 *	Notice:  no modules are conditioned by this file in the
 *		 makefile.  touch the source file to have a change
 *		 in debugging setup to reflect the program behaviour
 */

#ifndef _NN_DEBUG_H
#define _NN_DEBUG_H 1

/* debugging */

#define RC_TEST		1	/* rc file updates */
#define DG_TEST		2 	/* digest decoding */
#define SEQ_TEST	4	/* sequence file decoding */
#define SEQ_DUMP	8	/* dump sequence after read */

extern int Debug;

#endif /* _NN_DEBUG_H */