private.h 362 B

1234567891011121314151617
  1. /*
  2. * var/private.h
  3. */
  4. #include "clish/var.h"
  5. /*---------------------------------------------------------
  6. * PRIVATE TYPES
  7. *--------------------------------------------------------- */
  8. struct clish_var_s {
  9. lub_bintree_node_t bt_node;
  10. char *name;
  11. bool_t dynamic;
  12. char *value;
  13. char *saved; /* Saved value of static variable */
  14. clish_action_t *action;
  15. };