From a0bed6034c4da3cba70fc2df3f6ef5204e10eea9 Mon Sep 17 00:00:00 2001 From: KatolaZ Date: Sat, 4 Jan 2020 01:47:18 +0000 Subject: add Makefile and config.h --- config.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 config.h (limited to 'config.h') diff --git a/config.h b/config.h new file mode 100644 index 0000000..e34e9dd --- /dev/null +++ b/config.h @@ -0,0 +1,13 @@ +#ifndef __CONFIG_H__ +#define __CONFIG_H__ + +/* maximum length of a tag -- unsigned int */ +#define STR_MAX 128 +/* maximum allowed tag depth -- unsigned int */ +#define DEPTH_MAX 50 +/* output field sepatator -- char */ +#define SEP '\t' +/* attribute assignment symbol -- char */ +#define SATTR '=' + +#endif -- cgit v1.2.3