more constness.
[apps/madmutt.git] / history.h
index aa4038e..c053b96 100644 (file)
--- a/history.h
+++ b/history.h
@@ -26,7 +26,7 @@ typedef enum history_class history_class_t;
 
 void mutt_init_history (void);
 void mutt_history_add (history_class_t, const char *);
-char *mutt_history_next (history_class_t);
-char *mutt_history_prev (history_class_t);
+const char *mutt_history_next (history_class_t);
+const char *mutt_history_prev (history_class_t);
 
 #endif