about summary refs log tree commit diff stats
path: root/src/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/command.h')
-rw-r--r--src/command.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/command.h b/src/command.h
index f54e841e..0b6c5a5f 100644
--- a/src/command.h
+++ b/src/command.h
@@ -45,9 +45,9 @@ GSList * cmd_get_basic_help(void);
 GSList * cmd_get_settings_help(void);
 GSList * cmd_get_presence_help(void);
 
-void history_init(void);
-void history_append(char *inp);
-char *history_previous(char *inp, int *size);
-char *history_next(char *inp, int *size);
+void cmd_history_init(void);
+void cmd_history_append(char *inp);
+char *cmd_history_previous(char *inp, int *size);
+char *cmd_history_next(char *inp, int *size);
 
 #endif