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