(root)/
texinfo-7.1/
tp/
Texinfo/
XS/
parsetexi/
debug.h
       1  /* debug.h - declarations for debug.c */
       2  #ifndef TEXINFO_DEBUG_H
       3  #define TEXINFO_DEBUG_H
       4  
       5  /* We define TEXINFO_DEBUG_H instead of DEBUG_H to avoid a clash with Perl
       6     header files in some versions of Perl. */
       7  
       8  #include "tree_types.h"
       9  
      10  void debug (char *s, ...);
      11  void debug_nonl (char *s, ...);
      12  extern int debug_output;
      13  void debug_print_element (ELEMENT *e, int print_parent);
      14  char *print_element_debug (ELEMENT *e, int print_parent);
      15  char *debug_command_name (enum command_id cmd);
      16  void debug_print_protected_string (char *input_string);
      17  
      18  #endif