1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifdef DEBUG
- /*
- * conf_dump.c
- */
- #include "private.h"
- #include "lub/dump.h"
- /*--------------------------------------------------------- */
- /*void clish_conf_dump(clish_conf_t * this)
- {
- clish_command_t *c;
- lub_bintree_iterator_t iter;
- unsigned i;
- lub_dump_printf("view(%p)\n", this);
- lub_dump_indent();
- c = lub_bintree_findfirst(&this->tree);
- lub_dump_printf("name : %s\n", clish_view__get_name(this));
- lub_dump_printf("depth : %u\n", clish_view__get_depth(this));
- */
- /* Get each namespace to dump their details */
- /* for (i = 0; i < this->nspacec; i++) {
- clish_nspace_dump(clish_view__get_nspace(this, i));
- }
- */
- /* iterate the tree of commands */
- /* for (lub_bintree_iterator_init(&iter, &this->tree, c);
- c; c = lub_bintree_iterator_next(&iter)) {
- clish_command_dump(c);
- }
- lub_dump_undent();
- } */
- /*--------------------------------------------------------- */
- #endif /* DEBUG */
|