mirror of https://github.com/sipwise/klish.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
322 B
18 lines
322 B
/*
|
|
* shell_misc.c
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <assert.h>
|
|
|
|
#include "private.h"
|
|
|
|
/*--------------------------------------------------------- */
|
|
const char *clish_shell__get_overview(const clish_shell_t *this)
|
|
{
|
|
assert(this);
|
|
return this->overview;
|
|
}
|
|
|
|
/*--------------------------------------------------------- */
|