diff options
author | James Booth <boothj5@gmail.com> | 2016-10-06 00:20:20 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-10-06 00:20:20 +0100 |
commit | 82a8f5f10b41a765d7acf63bd805f099b1f93b9a (patch) | |
tree | 34de1ecf29cab2bdebebe820344fd518a432cbe0 /src | |
parent | 4ba496a46605ba4766071ff0f7828f1fa187d612 (diff) | |
download | profani-tty-82a8f5f10b41a765d7acf63bd805f099b1f93b9a.tar.gz |
Minor code tidy cmd_ac.h
Diffstat (limited to 'src')
-rw-r--r-- | src/command/cmd_ac.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/command/cmd_ac.h b/src/command/cmd_ac.h index bdfd8b80..3d1069bc 100644 --- a/src/command/cmd_ac.h +++ b/src/command/cmd_ac.h @@ -40,6 +40,9 @@ void cmd_ac_init(void); void cmd_ac_uninit(void); +char* cmd_ac_complete(ProfWin *window, const char *const input); +void cmd_ac_reset(ProfWin *window); +gboolean cmd_ac_exists(char *cmd); void cmd_ac_add(const char *const value); void cmd_ac_add_help(const char *const value); @@ -51,13 +54,7 @@ void cmd_ac_remove(const char *const value); void cmd_ac_remove_help(const char *const value); void cmd_ac_remove_alias_value(char *value); -gboolean cmd_ac_exists(char *cmd); - void cmd_ac_add_form_fields(DataForm *form); void cmd_ac_remove_form_fields(DataForm *form); -char* cmd_ac_complete(ProfWin *window, const char *const input); - -void cmd_ac_reset(ProfWin *window); - #endif |