1234567891011121314151617181920212223 |
- #include <regex.h>
- #include "clish/nspace.h"
- struct clish_nspace_s {
- lub_bintree_t tree;
- clish_view_t *view;
- char *view_name;
- char *prefix;
- char *access;
- regex_t prefix_regex;
- bool_t help;
- bool_t completion;
- bool_t context_help;
- bool_t inherit;
- clish_command_t * prefix_cmd;
- };
|