home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / nn.tar / nn-6.5.1 / debug.h < prev    next >
C/C++ Source or Header  |  1995-04-29  |  564b  |  24 lines

  1. /*
  2.  *    (c) Copyright 1990, Kim Fabricius Storm.  All rights reserved.
  3.  *
  4.  *    Debug flags and defines
  5.  *
  6.  *    Notice:  no modules are conditioned by this file in the
  7.  *         makefile.  touch the source file to have a change
  8.  *         in debugging setup to reflect the program behaviour
  9.  */
  10.  
  11. #ifndef _NN_DEBUG_H
  12. #define _NN_DEBUG_H 1
  13.  
  14. /* debugging */
  15.  
  16. #define RC_TEST        1    /* rc file updates */
  17. #define DG_TEST        2     /* digest decoding */
  18. #define SEQ_TEST    4    /* sequence file decoding */
  19. #define SEQ_DUMP    8    /* dump sequence after read */
  20.  
  21. extern int Debug;
  22.  
  23. #endif /* _NN_DEBUG_H */
  24.