client: Remove unused API

This commit is contained in:
Tim Kourt 2019-09-19 10:16:30 -07:00 committed by Denis Kenzior
parent 79ccff464f
commit 411834e089
2 changed files with 0 additions and 6 deletions

View File

@ -76,11 +76,6 @@ bool command_option_get(const char *name, const char **value_out)
return false;
}
bool command_has_options(void)
{
return !l_queue_isempty(command_options);
}
static enum cmd_status cmd_version(const char *entity,
char **argv, int argc)
{

View File

@ -58,7 +58,6 @@ struct command_family {
};
bool command_option_get(const char *name, const char **value_out);
bool command_has_options(void);
bool command_line_find_token(const char *token, uint8_t num_to_inspect);
char **command_completion(const char *text, int start, int end);