private.h 259 B

123456789101112131415161718
  1. #ifndef query_private_h
  2. #define query_private_h
  3. #include "cliconf/query.h"
  4. #include "lub/types.h"
  5. struct query_s {
  6. query_op_t op;
  7. char *pattern;
  8. unsigned short priority;
  9. unsigned pwdc;
  10. char **pwd;
  11. char *line;
  12. char *path;
  13. bool_t splitter;
  14. };
  15. #endif