about summary refs log tree commit diff stats
path: root/prof_history.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-04-30 02:36:45 +0100
committerJames Booth <boothj5@gmail.com>2012-04-30 02:36:45 +0100
commitf21cb52ab025cfe1bc90226d7bb433fc775d390e (patch)
treec98e3f6a58c1e3a3f121800643cd70429d4dd2f5 /prof_history.h
parentb6c5fef45eaadce4463ee60e60eb0a0252b61255 (diff)
downloadprofani-tty-f21cb52ab025cfe1bc90226d7bb433fc775d390e.tar.gz
Create history session
Diffstat (limited to 'prof_history.h')
-rw-r--r--prof_history.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/prof_history.h b/prof_history.h
index 5c2acaaf..04c6fdaf 100644
--- a/prof_history.h
+++ b/prof_history.h
@@ -4,8 +4,8 @@
 typedef struct p_history_t  *PHistory;
 
 PHistory p_history_new(unsigned int size);
-char * p_history_previous(PHistory history);
-char * p_history_next(PHistory history);
+char * p_history_previous(PHistory history, char *item);
+char * p_history_next(PHistory history, char *item);
 void p_history_append(PHistory history, char *item);
 
 #endif