about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-10-06 00:20:20 +0100
committerJames Booth <boothj5@gmail.com>2016-10-06 00:20:20 +0100
commit82a8f5f10b41a765d7acf63bd805f099b1f93b9a (patch)
tree34de1ecf29cab2bdebebe820344fd518a432cbe0
parent4ba496a46605ba4766071ff0f7828f1fa187d612 (diff)
downloadprofani-tty-82a8f5f10b41a765d7acf63bd805f099b1f93b9a.tar.gz
Minor code tidy cmd_ac.h
-rw-r--r--src/command/cmd_ac.h9
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