]> granicus.if.org Git - icinga2/blob - lib/cli/editline.hpp
add some object locking to the Dump method (which could theoreticylly suffer from...
[icinga2] / lib / cli / editline.hpp
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #ifndef EDITLINE_H
4 #define EDITLINE_H
5
6 extern "C" {
7
8 char *readline(const char *prompt);
9 int add_history(const char *line);
10 void rl_deprep_terminal();
11
12 typedef char *ELFunction(const char *, int);
13
14 extern char rl_completion_append_character;
15 extern ELFunction *rl_completion_entry_function;
16
17 }
18
19 #endif /* EDITLINE_H */