Home | History | Annotate | Download | only in libedit

Lines Matching defs:read_char

69 	el_rfunc_t	 read_char;	/* Function to read a character. */
74 static int read_char(EditLine *, wchar_t *);
97 /* builtin read_char */
98 el->el_read->read_char = read_char;
126 el_read->read_char = (rc == EL_BUILTIN_GETCFN) ? read_char : rc;
138 return el_read->read_char == read_char ?
139 EL_BUILTIN_GETCFN : el_read->read_char;
275 /* read_char():
279 read_char(EditLine *el, wchar_t *cp)
408 num_read = (*el->el_read->read_char)(el, cp);
457 while ((num = (*el->el_read->read_char)(el, lp->lastchar)) == 1) {