123456789101112131415161718192021222324 |
- /*
- * konf/tree/private.h
- */
- #ifndef _konf_tree_private_h
- #define _konf_tree_private_h
- #include "konf/tree.h"
- #include "lub/types.h"
- #include "lub/list.h"
- /*---------------------------------------------------------
- * PRIVATE TYPES
- *--------------------------------------------------------- */
- struct konf_tree_s {
- lub_list_t *list;
- char *line;
- unsigned short priority;
- unsigned short seq_num;
- unsigned short sub_num;
- bool_t splitter;
- int depth;
- };
- #endif
|