el_read_getfn(): * return the current read char function, or EL_BUILTIN_GETCFN * if it is the default one */
| 89 | * if it is the default one |
| 90 | */ |
| 91 | protected el_rfunc_t |
| 92 | el_read_getfn(EditLine *el) |
| 93 | { |
| 94 | return el->el_read.read_char == read_char ? |
| 95 | EL_BUILTIN_GETCFN : el->el_read.read_char; |
| 96 | } |
| 97 | |
| 98 | |
| 99 | #ifndef MIN |