private.h 468 B

123456789101112131415161718192021222324
  1. /*
  2. * konf/tree/private.h
  3. */
  4. #ifndef _konf_tree_private_h
  5. #define _konf_tree_private_h
  6. #include "konf/tree.h"
  7. #include "lub/types.h"
  8. #include "lub/list.h"
  9. /*---------------------------------------------------------
  10. * PRIVATE TYPES
  11. *--------------------------------------------------------- */
  12. struct konf_tree_s {
  13. lub_list_t *list;
  14. char *line;
  15. unsigned short priority;
  16. unsigned short seq_num;
  17. unsigned short sub_num;
  18. bool_t splitter;
  19. int depth;
  20. };
  21. #endif