summaryrefslogtreecommitdiff
path: root/src/history.h
diff options
context:
space:
mode:
authorsabetts <sabetts>2003-05-27 08:22:17 +0000
committersabetts <sabetts>2003-05-27 08:22:17 +0000
commitfa25eb5ee73271cc36fd53c1f660867445f8a3fa (patch)
tree0a91c317ef31fd2a6a6232ebfc58e05d539ef363 /src/history.h
parent6cc80f10f7cb3de33626cf178bda532d741cf388 (diff)
downloadratpoison-fa25eb5ee73271cc36fd53c1f660867445f8a3fa.zip
(ratpoison_SOURCES): add editor.c editor.h
history.h and history.c
Diffstat (limited to 'src/history.h')
-rw-r--r--src/history.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/history.h b/src/history.h
new file mode 100644
index 0000000..f206cba
--- /dev/null
+++ b/src/history.h
@@ -0,0 +1,14 @@
+#ifndef _RATPOISON_HISTORY_H
+#define _RATPOISON_HISTORY_H 1
+
+void history_load ();
+void history_save ();
+void history_resize (int size);
+void history_reset ();
+void history_add (char *item);
+char *history_next ();
+char *history_previous ();
+char *history_list_items ();
+int history_expand_line (char *string, char **output);
+
+#endif /* ! _RATPOISON_HISTORY_H */