private.h 306 B

12345678910111213
  1. /*
  2. * private.h
  3. */
  4. #include "clish/variable.h"
  5. /*--------------------------------------------------------- */
  6. typedef struct context_s context_t;
  7. struct context_s {
  8. const char *viewid;
  9. const clish_command_t *cmd;
  10. clish_pargv_t *pargv;
  11. };
  12. /*--------------------------------------------------------- */