First Commit of my working state
[simh.git] / sim_readline.h
1 /* sim_readline.h: declarations for libreadline wrapper
2
3 Written by Philipp Hachtmann
4
5
6 19-SEP-08 PH Initial version
7
8
9 */
10
11 #ifndef READLINE_H
12 #define READLINE_H
13 #ifdef HAVE_READLINE
14
15 extern char *readline_read_line(char *cpre, int32 size, const char * prompt);
16 extern void readline_read_history();
17 extern void readline_write_history();
18
19 #endif
20 #endif