about summary refs log tree commit diff stats
path: root/history.h
diff options
context:
space:
mode:
Diffstat (limited to 'history.h')
-rw-r--r--history.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/history.h b/history.h
index 7afca5e1..a65ac397 100644
--- a/history.h
+++ b/history.h
@@ -25,8 +25,8 @@
 #define HISTORY_H
 
 void history_init(void);
-void history_append(const char * const inp);
-char *history_previous(void);
-char *history_next(void);
+void history_append(char *inp);
+char *history_previous(char *inp, int *size);
+char *history_next(char *inp, int *size);
 
 #endif