Home | History | Annotate | Download | only in editline

Lines Matching full:char

40 typedef int	  Function(const char *, int);
42 typedef void VCPFunction(char *);
43 typedef char *CPFunction(const char *, int);
44 typedef char **CPPFunction(const char *, int, int);
45 typedef char *rl_compentry_func_t(const char *, int);
56 const char *line;
61 char type;
99 extern const char *rl_library_version;
101 extern char *rl_readline_name;
104 extern char *rl_line_buffer;
108 extern char *rl_basic_word_break_characters;
109 extern char *rl_completer_word_break_characters;
110 extern char *rl_completer_quote_characters;
112 extern char *(*rl_completion_word_break_hook)(void);
117 extern char *rl_special_prefixes;
122 extern char *rl_terminal_name;
124 extern char *rl_prompt;
144 char *readline(const char *);
148 int add_history(const char *);
157 HIST_ENTRY *replace_history_entry(int, const char *, histdata_t);
162 int history_search(const char *, int);
163 int history_search_prefix(const char *, int);
164 int history_search_pos(const char *, int, int);
165 int read_history(const char *);
166 int write_history(const char *);
167 int history_truncate_file (const char *, int);
168 int history_expand(char *, char **);
169 char **history_tokenize(const char *);
170 const char *get_history_event(const char *, int *, int);
171 char *history_arg_extract(int, int, const char *);
173 char *tilde_expand(char *);
174 char *filename_completion_function(const char *, int);
175 char *username_completion_function(const char *, int);
178 char **completion_matches(const char *, CPFunction *);
179 void rl_display_match_list(char **, int, int);
182 int rl_insert_text(const char *);
183 void rl_reset_terminal(const char *);
187 void rl_callback_handler_install(const char *, VCPFunction *);
193 int rl_read_init_file(const char *);
194 int rl_parse_and_bind(const char *);
195 int rl_variable_bind(const char *, const char *);
197 int rl_add_defun(const char *, Function *, int);
201 char *rl_filename_completion_function (const char *, int);
203 int _rl_qsort_string_compare(char **, char **);
204 char **rl_completion_matches(const char *, rl_compentry_func_t *);
206 int rl_set_prompt(const char *);
216 int rl_generic_bind(int, const char *, const char *, Keymap);