123456789101112131415161718192021 |
- /*
- * action_dump.c
- */
- #include "lub/dump.h"
- #include "private.h"
- /*--------------------------------------------------------- */
- void clish_action_dump(const clish_action_t *this)
- {
- lub_dump_printf("action(%p)\n", this);
- lub_dump_indent();
- lub_dump_printf("script : %s\n", LUB_DUMP_STR(this->script));
- lub_dump_printf("builtin : %s\n", LUB_DUMP_STR(this->builtin));
- lub_dump_printf("shebang : %s\n", LUB_DUMP_STR(this->shebang));
- lub_dump_undent();
- }
- /*--------------------------------------------------------- */
|