Return the next character available. This handles input inserted into
the input stream via pending input (see Readline Variables)
and rl_stuff_char (), macros, and characters read from the keyboard.
Function: intrl_getc (FILE *)
Return the next character available from the keyboard.
Function: intrl_stuff_char (int c)
Insert c into the Readline input stream. It will be "read"
before Readline attempts to read characters from the terminal with
rl_read_key ().
Function: rl_extend_line_buffer(int len)
Ensure that rl_line_buffer has enough space to hold len
characters, possibly reallocating it if necessary.
Function: intrl_initialize ()
Initialize or re-initialize Readline's internal state.
Reinitialize Readline's idea of the terminal settings using
terminal_name as the terminal type (e.g., vt100).
Function: intalphabetic (int c)
Return 1 if c is an alphabetic character.
Function: intnumeric (int c)
Return 1 if c is a numeric character.
Function: intding ()
Ring the terminal bell, obeying the setting of bell-style.
Function: voidrl_display_match_list (char **matches, int len, int max)
A convenience function for displaying a list of strings in
columnar format on Readline's output stream. matches is the list
of strings, in argv format, such as a list of completion matches.
len is the number of strings in matches, and max
is the length of the longest string in matches. This function uses
the setting of print-completions-horizontally to select how the
matches are displayed (see Readline Init File Syntax).
The following are implemented as macros, defined in chartypes.h.
Function: intuppercase_p (int c)
Return 1 if c is an uppercase alphabetic character.
Function: intlowercase_p (int c)
Return 1 if c is a lowercase alphabetic character.
Function: intdigit_p (int c)
Return 1 if c is a numeric character.
Function: intto_upper (int c)
If c is a lowercase alphabetic character, return the corresponding
uppercase character.
Function: intto_lower (int c)
If c is an uppercase alphabetic character, return the corresponding
lowercase character.