private.h 422 B

1234567891011121314151617181920212223
  1. #ifndef _konf_query_private_h
  2. #define _konf_query_private_h
  3. #include "konf/query.h"
  4. #include "lub/types.h"
  5. struct konf_query_s {
  6. konf_query_op_t op;
  7. char *pattern;
  8. unsigned short priority;
  9. bool_t seq; /* sequence aka auto priority */
  10. unsigned short seq_num; /* sequence number */
  11. unsigned int pwdc;
  12. char **pwd;
  13. char *line;
  14. char *lower_line;
  15. char *path;
  16. bool_t splitter;
  17. bool_t unique;
  18. int depth;
  19. };
  20. #endif