config.h - xml2tsv - a simple xml-to-tsv converter, based on xmlparser
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) README
 (DIR) LICENSE
       ---
       config.h (301B)
       ---
            1 #ifndef __CONFIG_H__
            2 #define __CONFIG_H__
            3 
            4 /* maximum length of a tag -- unsigned int */
            5 #define STR_MAX 128
            6 /* maximum allowed tag depth -- unsigned int */
            7 #define DEPTH_MAX 50
            8 /* output field sepatator -- char */
            9 #define SEP '\t'
           10 /* attribute assignment symbol -- char */
           11 #define SATTR '='
           12 
           13 #endif