123456789101112131415161718 |
- /*
- * shell__get_view.c
- */
- #include "private.h"
- /*--------------------------------------------------------- */
- const clish_view_t *clish_shell__get_view(const clish_shell_t * this)
- {
- return this->view;
- }
- /*--------------------------------------------------------- */
- unsigned clish_shell__get_depth(const clish_shell_t * this)
- {
- return clish_view__get_depth(this->view);
- }
- /*--------------------------------------------------------- */
|