diff options
Diffstat (limited to 'src/lib/include/readline')
-rw-r--r-- | src/lib/include/readline/history.h | 5 | ||||
-rw-r--r-- | src/lib/include/readline/readline.h | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/lib/include/readline/history.h b/src/lib/include/readline/history.h new file mode 100644 index 0000000..3b98ca2 --- /dev/null +++ b/src/lib/include/readline/history.h @@ -0,0 +1,5 @@ +#pragma once + +#include "readline.h" + +/* vim: set sts=0 ts=4 sw=4 tw=0 noet :*/ diff --git a/src/lib/include/readline/readline.h b/src/lib/include/readline/readline.h new file mode 100644 index 0000000..ae3e05c --- /dev/null +++ b/src/lib/include/readline/readline.h @@ -0,0 +1,6 @@ +#pragma once + +char* readline(const char* prompt); +void add_history(const char* line); + +/* vim: set sts=0 ts=4 sw=4 tw=0 noet :*/ |