class READLINE_INPUT_STREAM
Summary
An input stream where the data is read from CLI using GNU Readline.
NOTE: the history is a singleton so there is really no point in creating more than one readline stream...
Direct parents
Inherit list: TERMINAL_INPUT_STREAM
Insert list: READ_LINE
Overview
Creation features
{ANY}
Features
{ANY}
{FILTER_INPUT_STREAM}
{FILTER}
{}
{ANY}
{ANY}
{FILTER_INPUT_STREAM}
{FILTER}
{ANY}
{}
{ANY}
{}
{STREAM_HANDLER}
{ANY}
{}
{RECYCLING_POOL}
  • recycle
    Do whatever needs to be done to free resources or recycle other objects when recycling this one
{}
{ANY}
Skipping separators:
{ANY}
To read one number at a time:
{ANY}
To read one line or one word at a time:
{ANY}
Other features:
{ANY}
{}
{FILTER}
Read line
{ANY}
{}
Utility features
{}
Wrapper related exceptions
{}
Various exceptions codes:
{ANY}
{ANY}
Status report:
{ANY}
Basic operations:
{ANY}
  • die (code: INTEGER_32)
    Terminate execution with exit status code, without triggering an exception.
  • raise (name: STRING)
    Raise a developer exception of name name.
  • throw (a_exception: EXCEPTION)
Non-Standard Extensions:
{ANY}
{}
External calls
{}
variable-size types
{WRAPPER_HANDLER}
C type definitions (typedefs)
{WRAPPER_HANDLER}
  • comparison_fn_t: POINTER
    typedef comparison_fn_t from /usr/include/stdlib.h Empty by design, used for anchored declarations.
  • timer_t: POINTER
    typedef timer_t from /usr/include/time.h Empty by design, used for anchored declarations.
  • clockid_t: INTEGER_32
    typedef clockid_t from /usr/include/time.h Empty by design, used for anchored declarations.
  • time_t: INTEGER_64
    typedef time_t from /usr/include/time.h Empty by design, used for anchored declarations.
  • clock_t: INTEGER_64
    typedef clock_t from /usr/include/time.h Empty by design, used for anchored declarations.
  • uintmax_t: NATURAL_64
    typedef uintmax_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • intmax_t: INTEGER_64
    typedef intmax_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uintptr_t: NATURAL_64
    typedef uintptr_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • intptr_t: INTEGER_64
    typedef intptr_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_fast64_t: NATURAL_64
    typedef uint_fast64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_fast32_t: NATURAL_64
    typedef uint_fast32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_fast16_t: NATURAL_64
    typedef uint_fast16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_fast8_t: CHARACTER
    typedef uint_fast8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_fast64_t: INTEGER_64
    typedef int_fast64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_fast32_t: INTEGER_64
    typedef int_fast32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_fast16_t: INTEGER_64
    typedef int_fast16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_fast8_t: CHARACTER
    typedef int_fast8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_least64_t: NATURAL_64
    typedef uint_least64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_least32_t: NATURAL_32
    typedef uint_least32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_least16_t: NATURAL_16
    typedef uint_least16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint_least8_t: CHARACTER
    typedef uint_least8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_least64_t: INTEGER_64
    typedef int_least64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_least32_t: INTEGER_32
    typedef int_least32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_least16_t: INTEGER_16
    typedef int_least16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int_least8_t: CHARACTER
    typedef int_least8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint64_t: NATURAL_64
    typedef uint64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint32_t: NATURAL_32
    typedef uint32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint16_t: NATURAL_16
    typedef uint16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • uint8_t: CHARACTER
    typedef uint8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int64_t: INTEGER_64
    typedef int64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int32_t: INTEGER_32
    typedef int32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int16_t: INTEGER_16
    typedef int16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • int8_t: CHARACTER
    typedef int8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • ssize_t: INTEGER_64
    typedef ssize_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • off64_t: INTEGER_64
    typedef off64_t from /usr/include/stdio.h Empty by design, used for anchored declarations.
  • off_t: INTEGER_64
    typedef off_t from /usr/include/stdio.h Empty by design, used for anchored declarations.
  • size_t: NATURAL_64
    typedef size_t from /usr/include/stdlib.h Empty by design, used for anchored declarations.
  • ptrdiff_t: INTEGER_64
    typedef ptrdiff_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
  • error_t: INTEGER_32
    typedef error_t from /usr/include/errno.h Empty by design, used for anchored declarations.
set_prompt (a_prompt: ABSTRACT_STRING)
effective procedure
{ANY}
require
  • a_prompt /= Void
end_of_input: BOOLEAN
effective function
{ANY}
end_of_input means the previous attempt in character reading failed because the end has been reached.
So last_character is not valid and you are not allowed to do any read attempt anymore.
Notes:
  • Just after a successful connect, end_of_input is always False because you did not yet read anything).
  • Once the end of input has been reached, this is definitive in that no more characters will ever be provided (but of course you can still come back if can_unread_character; end_of_input will be changed if you unread_character). In that, it is different from can_read_character which is only a temporary state.
Please refer to the Liberty Eiffel FAQ or tutorial/io examples.
is_connected: BOOLEAN
writable attribute
{ANY}
True if the stream is connected.
Only in that case can data be transferred via this stream.
must_disconnect: BOOLEAN
is False
constant attribute
{ANY}
can_unread_character: BOOLEAN
effective function
{ANY}
require
  • is_connected
  • valid_last_character
disconnect
effective procedure
{ANY}
Try to disconnect the stream.
Note that it *does not* ensure that the stream will effectively be disconnected (some terminal streams, for instance, are always connected) but the feature can be used to "shake off" filters.
require
    • is_connected
    • can_disconnect
    • is_connected
    • can_disconnect
ensure
  • not is_filtered
valid_last_character: BOOLEAN
effective function
{ANY}
require
  • is_connected
filtered_read_character
effective procedure
require
  • is_connected
  • can_read_character
filtered_unread_character
effective procedure
require
  • is_connected
  • can_unread_character
filtered_last_character: CHARACTER
effective function
require
  • is_connected
  • valid_last_character
filtered_descriptor: INTEGER_32
effective function
Find the descriptor of the terminal stream...
Filters do not have descriptors of their own
require
    • is_connected
    • filtered_has_descriptor
    • is_connected
    • filtered_has_descriptor
filtered_has_descriptor: BOOLEAN
is False
constant attribute
True if the underlying terminal stream has a descriptor
require
    • is_connected
    • is_connected
filtered_stream_pointer: POINTER
effective function
Find the pointer of the terminal stream...
Filters do not have pointers of their own
require
    • is_connected
    • filtered_has_stream_pointer
    • is_connected
    • filtered_has_stream_pointer
filtered_has_stream_pointer: BOOLEAN
is False
constant attribute
True if the underlying terminal stream has a pointer
require
    • is_connected
    • is_connected
dispose
effective procedure
{}
Action to be executed just before garbage collection reclaims an object.
make
effective procedure
{}
make_no_history
effective procedure
{}
offset: INTEGER_32
writable attribute
{}
keep_history: BOOLEAN
writable attribute
{}
can_read_character: BOOLEAN
is True
constant attribute
{ANY}
Note that this state is usually temporary.
Usually it is called until either it becomes True or the stream is disconnected:
 from
 until
    stream.can_read_character or else not stream.is_connected
 loop
    -- some "still waiting..." code, maybe a sandglass?
 end
 if stream.is_connected then
    stream.read_character
 end
See also: is_connected, end_of_input
require
  • is_connected
ensure
  • Result implies not end_of_input
can_read_line: BOOLEAN
is True
constant attribute
{ANY}
require
  • is_connected
can_disconnect: BOOLEAN
is True
constant attribute
{ANY}
True if the stream can be safely disconnected (without data loss, etc.)
require
    • is_connected
    • is_connected
read_character
effective procedure
{ANY}
If read_character fail, end_of_input is set.
Else, use last_character. Read tutorial or io cluster documentation to learn the read_character usage pattern.
require
  • is_connected
  • not is_filtered and then can_read_character
ensure
read_line_in (buffer: STRING)
effective procedure
{ANY}
Same job as read_line but storage is directly done in buffer.
Read tutorial or io cluster documentation to learn the read_line usage pattern.
require
  • is_connected
  • not is_filtered and then can_read_line
  • buffer /= Void
read_available_in (buffer: STRING, limit: INTEGER_32)
effective procedure
{ANY}
Same job as read_available but storage is directly done in buffer.
The usage pattern is the same as for read_line.
require
  • is_connected
  • not is_filtered
  • buffer /= Void
  • limit > 0
unread_character
effective procedure
{ANY}
require
  • is_connected
  • not is_filtered and then can_unread_character
ensure
last_character: CHARACTER
effective function
{ANY}
require
  • is_connected
  • not end_of_input
  • not is_filtered and then valid_last_character
ensure
detach
effective procedure
{ANY}
Shake off the filter.
ensure
  • not is_filtered
filtered_read_available_in (buffer: STRING, limit: INTEGER_32)
effective procedure
require
filtered_read_line_in (buffer: STRING)
effective procedure
require
writable attribute
The filter that uses this stream as backend
event_can_read: EVENT_DESCRIPTOR
effective function
{ANY}
writable attribute
{}
new_url: URL
effective function
{}
ensure
  • Result /= Void
descriptor: INTEGER_32
effective function
{ANY}
Some OS-dependent descriptor.
Mainly used by the sequencer library (see READY_CONDITION).
require
has_descriptor: BOOLEAN
effective function
{ANY}
True if that stream can be associated to some OS-meaningful descriptor.
require
url: URL
frozen
effective function
{ANY}
The URL to this stream as resource
ensure
  • not_void: Result /= Void
  • always_the_same: Result = url
url_memory: URL
writable attribute
{}
stream_pointer: POINTER
effective function
Some Back-end-dependent pointer (FILE* in C, InputStream or OutputStream in Java)
has_stream_pointer: BOOLEAN
effective function
True if that stream can be associated to some Back-end-meaningful stream pointer.
require
event_exception: EVENT_DESCRIPTOR
effective function
{ANY}
stream_exception: STREAM_EXCEPTION
writable attribute
{}
recycle
effective procedure
Do whatever needs to be done to free resources or recycle other objects when recycling this one
sequencer_descriptor (file: POINTER): INTEGER_32
{}
is_filtered: BOOLEAN
deferred function
{ANY}
skip_separators
effective procedure
{ANY}
Skip all separators (see is_separator of class CHARACTER) and make the first non-separator available in last_character.
This non-separator character is pushed back into the stream (see unread_character) to be available one more time (the next read_character will consider this non-separator). When end_of_input occurs, this process is automatically stopped.
require
skip_separators_using (separators: STRING)
effective procedure
{ANY}
Same job as skip_separators using the separators set.
require
skip_remainder_of_line
effective procedure
{ANY}
Skip all the remainder of the line including the end of line delimiter itself.
read_integer
effective procedure
{ANY}
Read an integer according to the Eiffel syntax.
 Make result available in last_integer.  Heading
separators are automatically skipped using is_separator of class CHARACTER.  Trailing separators
are not skipped.
require ensure
last_integer: INTEGER_32
writable attribute
{ANY}
Last integer read using read_integer.
valid_last_integer: BOOLEAN
writable attribute
{ANY}
Was the last call to read_integer successful ?
last_real: REAL_64
writable attribute
{ANY}
Last real read with read_real.
valid_last_real: BOOLEAN
writable attribute
{ANY}
Was the last call to read_real successful ?
read_real
effective procedure
{ANY}
Read a REAL and make the result available in last_real.
require ensure
last_string: STRING
once function
{ANY}
Access to the unique common buffer to get for example the result computed by read_line, read_word, newline, etc.
This is a once function (the same common buffer is used for all streams).
read_line
effective procedure
{ANY}
Read a complete line ended by '%N' or end_of_input.%
% Make the result available in last_string common buffer. The end of line character (usually '%N') is not added in the last_string buffer. Read tutorial or io cluster documentation to learn the read_line usage pattern.
See also read_line_in.
require
read_available (limit: INTEGER_32)
effective procedure
{ANY}
Read as many characters as possible, as long as the stream does not block and up to the given limit.
read_word
effective procedure
{ANY}
Read a word using is_separator of class CHARACTER.
The result is available in the last_string common buffer. Heading separators are automatically skipped. Trailing separators are not skipped (last_character is left on the first one). If end_of_input is encountered, Result can be the empty string.
require
newline
effective procedure
{ANY}
Consume input until newline ('%N') is found.
% The corresponding STRING is stored in last_string common buffer.
require
reach_and_skip (keyword: STRING)
effective procedure
{ANY}
Try to skip enough characters in order to reach the keyword which is skipped too.
If the keyword is not in the remainder of this stream, the process is stopped as soon as end_of_input occurs.
require ensure
read_word_using (separators: STRING)
effective procedure
{ANY}
Same job as read_word using separators.
require
read_tail_in (str: STRING)
effective procedure
{ANY}
Read all remaining character of the stream in str.
require ensure
io_getc (stream: POINTER): INTEGER_32
{}
io_ungetc (byte: CHARACTER, stream: POINTER)
{}
io_fread (buf: NATIVE_ARRAY[CHARACTER], size: INTEGER_32, stream: POINTER): INTEGER_32
{}
return size read or 0 if end of input (-1 on error => exception ?)
{}
set_filter (a_filter: FILTER)
effective procedure
Used by the filter itself to get attached
require
  • a_filter /= Void
ensure
writable attribute
{ANY}
The prompt presented to the user
last_line: STRING
writable attribute
{ANY}
The last line read by gnu_readline
buffer: FIXED_STRING
effective function
{ANY}
once function
{ANY}
once function
{ANY}
buffer_: FIXED_STRING
once function
{}
null_or (a_wrapper: WRAPPER): POINTER
effective function
{}
The handle of a_wrapper, or the default_pointer if a_wrapper is Void
ensure
  • definition: Result = default_pointer or else a_wrapper /= Void and then Result = a_wrapper.handle
null_or_string (a_string: ABSTRACT_STRING): POINTER
effective function
{}
A pointer to a memory area containing the content of a_string or default_pointer if a_string is Void.
The memory area may be the internal buffer of a_string or a newly allocated one.
ensure
  • definition: Result = default_pointer or a_string /= Void implies Result = a_string.to_external
null_or_array (a_collection: WRAPPER_COLLECTION[WRAPPER]): POINTER
effective function
{}
A pointer to the contenct of a_collection or NULL (default_pointer) if a_collection is Void
ensure
  • definition: a_collection = Void implies Result.is_null and a_collection /= Void implies Result.is_not_null
collection_to_c_array (a_collection: COLLECTION[WRAPPER]): FAST_ARRAY[POINTER]
effective function
{}
An array containing the pointers to the objects wrapped by a_collection wrappers.
TODO: avoid creating a new array whenever possible.
require
  • a_collection /= Void
  • not a_collection.is_empty
pointer_to_unwrapped_deferred_object: STRING
is "A C function returned a pointer to an unwrapped object which is wrapped by a deferred class. It is not possible to create a correct wrapper."
constant attribute
{}
retrieved_object_mismatch: STRING
is "Retrieved_object_mismatch: the Eiffel wrapper associated with a pointer is not an actual wrapper for the object referred by that pointer "
constant attribute
{}
copying_an_uncopyable: STRING
is "Trying to copy an uncopyable wrapper: such objects are usually shortly lived"
constant attribute
{}
Check_instruction: INTEGER_32
is 1
constant attribute
{ANY}
Exception code for violated check.
Class_invariant: INTEGER_32
is 2
constant attribute
{ANY}
Exception code for violated class invariant.
Developer_exception: INTEGER_32
is 3
constant attribute
{ANY}
Exception code for developer exception.
See also: raise, throw
Incorrect_inspect_value: INTEGER_32
is 4
constant attribute
{ANY}
Exception code for inspect statement.
This exception occurs when Void is passed as the expression to inspect ("inspect on STRING only). This exception also occurs when the inspected value selects no branch (when the keyword "else" not used, one "when" branch _must_ be selected). Some value which is not one of the inspect constants, if there is no Else_part _
Loop_invariant: INTEGER_32
is 5
constant attribute
{ANY}
Exception code for violated loop invariant
Loop_variant: INTEGER_32
is 6
constant attribute
{ANY}
Exception code for non-decreased loop variant
No_more_memory: INTEGER_32
is 7
constant attribute
{ANY}
Exception code for failed memory allocation
Postcondition: INTEGER_32
is 8
constant attribute
{ANY}
Exception code for violated postcondition.
Precondition: INTEGER_32
is 9
constant attribute
{ANY}
Exception code for violated precondition.
Routine_failure: INTEGER_32
is 10
constant attribute
{ANY}
Exception code for failed routine.
Os_signal: INTEGER_32
is 11
constant attribute
{ANY}
Exception code for a signal received from the OS.
Void_attached_to_expanded: INTEGER_32
is 12
constant attribute
{ANY}
Exception code for attachment of Void value to expanded entity.
Void_call_target: INTEGER_32
is 13
constant attribute
{ANY}
Exception code for feature applied to Void reference
System_level_type_error: INTEGER_32
is 14
constant attribute
{ANY}
Exception code for the system-level type error (this kind of error mostly arise with covariant redefinition).
exception_name: STRING
effective function
{ANY}
name_of_exception (a_exception: INTEGER_32): STRING
effective function
{ANY}
developer_exception: EXCEPTION
effective function
{ANY}
The last developer-thrown exception.
require
developer_exception_name: STRING
effective function
{ANY}
Name of last developer-raised exception.
require
is_developer_exception: BOOLEAN
effective function
{ANY}
Is the last exception originally due to a developer exception?
is_developer_named_exception: BOOLEAN
effective function
{ANY}
Is the last exception originally due to a developer exception?
is_developer_exception_of_name (name: STRING): BOOLEAN
effective function
{ANY}
Is the last exception originally due to a developer exception of name name?
assertion_violation: BOOLEAN
effective function
{ANY}
Is last exception originally due to a violated assertion or non-decreasing variant?
exception: INTEGER_32
{ANY}
Code of last exception that occurred.
is_signal: BOOLEAN
effective function
{ANY}
Is last exception originally due to an external event (operating system signal) ?
die (code: INTEGER_32)
effective procedure
{ANY}
Terminate execution with exit status code, without triggering an exception.
raise (name: STRING)
effective procedure
{ANY}
Raise a developer exception of name name.
require
  • name /= Void
throw (a_exception: EXCEPTION)
effective procedure
{ANY}
require
  • a_exception /= Void
signal_number: INTEGER_32
{ANY}
Signal Number received from OS.
 Zero if exception is not an OS signal.
named_exception: NAMED_EXCEPTION
once function
{}
developer_exception_memory: REFERENCE[EXCEPTION]
once function
{}
raise_exception (code: INTEGER_32)
{}
funmap: POINTER
{}
funmap
address_of_funmap: POINTER
{}
Address of funmap
set_funmap (a_value: POINTER)
{}
Set variable funmap value
readline (argument_1: POINTER): POINTER
{}
function readline (in /usr/include/readline/readline.h) readline
rl_abort (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_abort (in /usr/include/readline/readline.h) rl_abort
rl_add_defun (argument_1: POINTER, argument_2: POINTER, argument_3: INTEGER_32): INTEGER_32
{}
function rl_add_defun (in /usr/include/readline/readline.h) rl_add_defun
rl_add_funmap_entry (argument_1: POINTER, argument_2: POINTER): INTEGER_32
{}
function rl_add_funmap_entry (in /usr/include/readline/readline.h) rl_add_funmap_entry
rl_add_undo (argument_1: INTEGER_32, argument_2: INTEGER_32, argument_3: INTEGER_32, argument_4: POINTER)
{}
function rl_add_undo (in /usr/include/readline/readline.h) rl_add_undo
rl_alphabetic (argument_1: INTEGER_32): INTEGER_32
{}
function rl_alphabetic (in /usr/include/readline/readline.h) rl_alphabetic
rl_already_prompted: INTEGER_32
{}
rl_already_prompted
address_of_rl_already_prompted: POINTER
{}
Address of rl_already_prompted
set_rl_already_prompted (a_value: INTEGER_32)
{}
Set variable rl_already_prompted value
rl_arrow_keys (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_arrow_keys (in /usr/include/readline/readline.h) rl_arrow_keys
rl_attempted_completion_function: POINTER
{}
rl_attempted_completion_function
address_of_rl_attempted_completion_function: POINTER
{}
Address of rl_attempted_completion_function
set_rl_attempted_completion_function (a_value: POINTER)
{}
Set variable rl_attempted_completion_function value
rl_attempted_completion_over: INTEGER_32
{}
rl_attempted_completion_over
address_of_rl_attempted_completion_over: POINTER
{}
Address of rl_attempted_completion_over
set_rl_attempted_completion_over (a_value: INTEGER_32)
{}
Set variable rl_attempted_completion_over value
rl_backward (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_backward (in /usr/include/readline/readline.h) rl_backward
rl_backward_byte (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_backward_byte (in /usr/include/readline/readline.h) rl_backward_byte
rl_backward_char (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_backward_char (in /usr/include/readline/readline.h) rl_backward_char
rl_backward_char_search (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_backward_char_search (in /usr/include/readline/readline.h) rl_backward_char_search
rl_backward_kill_line (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_backward_kill_line (in /usr/include/readline/readline.h) rl_backward_kill_line
rl_backward_kill_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_backward_kill_word (in /usr/include/readline/readline.h) rl_backward_kill_word
rl_backward_menu_complete (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_backward_menu_complete (in /usr/include/readline/readline.h) rl_backward_menu_complete
rl_backward_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_backward_word (in /usr/include/readline/readline.h) rl_backward_word
rl_basic_quote_characters: POINTER
{}
rl_basic_quote_characters
address_of_rl_basic_quote_characters: POINTER
{}
Address of rl_basic_quote_characters
set_rl_basic_quote_characters (a_value: POINTER)
{}
Set variable rl_basic_quote_characters value
rl_basic_word_break_characters: POINTER
{}
rl_basic_word_break_characters
address_of_rl_basic_word_break_characters: POINTER
{}
Address of rl_basic_word_break_characters
set_rl_basic_word_break_characters (a_value: POINTER)
{}
Set variable rl_basic_word_break_characters value
rl_beg_of_line (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_beg_of_line (in /usr/include/readline/readline.h) rl_beg_of_line
rl_begin_undo_group: INTEGER_32
{}
function rl_begin_undo_group (in /usr/include/readline/readline.h) rl_begin_undo_group
rl_beginning_of_history (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_beginning_of_history (in /usr/include/readline/readline.h) rl_beginning_of_history
rl_bind_key (argument_1: INTEGER_32, argument_2: POINTER): INTEGER_32
{}
function rl_bind_key (in /usr/include/readline/readline.h) rl_bind_key
rl_bind_key_if_unbound (argument_1: INTEGER_32, argument_2: POINTER): INTEGER_32
{}
function rl_bind_key_if_unbound (in /usr/include/readline/readline.h) rl_bind_key_if_unbound
rl_bind_key_if_unbound_in_map (argument_1: INTEGER_32, argument_2: POINTER, argument_3: POINTER): INTEGER_32
{}
function rl_bind_key_if_unbound_in_map (in /usr/include/readline/readline.h) rl_bind_key_if_unbound_in_map
rl_bind_key_in_map (argument_1: INTEGER_32, argument_2: POINTER, argument_3: POINTER): INTEGER_32
{}
function rl_bind_key_in_map (in /usr/include/readline/readline.h) rl_bind_key_in_map
rl_bind_keyseq (argument_1: POINTER, argument_2: POINTER): INTEGER_32
{}
function rl_bind_keyseq (in /usr/include/readline/readline.h) rl_bind_keyseq
rl_bind_keyseq_if_unbound (argument_1: POINTER, argument_2: POINTER): INTEGER_32
{}
function rl_bind_keyseq_if_unbound (in /usr/include/readline/readline.h) rl_bind_keyseq_if_unbound
rl_bind_keyseq_if_unbound_in_map (argument_1: POINTER, argument_2: POINTER, argument_3: POINTER): INTEGER_32
{}
function rl_bind_keyseq_if_unbound_in_map (in /usr/include/readline/readline.h) rl_bind_keyseq_if_unbound_in_map
rl_bind_keyseq_in_map (argument_1: POINTER, argument_2: POINTER, argument_3: POINTER): INTEGER_32
{}
function rl_bind_keyseq_in_map (in /usr/include/readline/readline.h) rl_bind_keyseq_in_map
rl_binding_keymap: POINTER
{}
rl_binding_keymap
address_of_rl_binding_keymap: POINTER
{}
Address of rl_binding_keymap
set_rl_binding_keymap (a_value: POINTER)
{}
Set variable rl_binding_keymap value
rl_call_last_kbd_macro (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_call_last_kbd_macro (in /usr/include/readline/readline.h) rl_call_last_kbd_macro
rl_callback_handler_install (argument_1: POINTER, argument_2: POINTER)
{}
function rl_callback_handler_install (in /usr/include/readline/readline.h) rl_callback_handler_install
rl_callback_handler_remove
{}
function rl_callback_handler_remove (in /usr/include/readline/readline.h) rl_callback_handler_remove
rl_callback_read_char
{}
function rl_callback_read_char (in /usr/include/readline/readline.h) rl_callback_read_char
rl_capitalize_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_capitalize_word (in /usr/include/readline/readline.h) rl_capitalize_word
rl_catch_signals: INTEGER_32
{}
rl_catch_signals
address_of_rl_catch_signals: POINTER
{}
Address of rl_catch_signals
set_rl_catch_signals (a_value: INTEGER_32)
{}
Set variable rl_catch_signals value
rl_catch_sigwinch: INTEGER_32
{}
rl_catch_sigwinch
address_of_rl_catch_sigwinch: POINTER
{}
Address of rl_catch_sigwinch
set_rl_catch_sigwinch (a_value: INTEGER_32)
{}
Set variable rl_catch_sigwinch value
rl_change_environment: INTEGER_32
{}
rl_change_environment
address_of_rl_change_environment: POINTER
{}
Address of rl_change_environment
set_rl_change_environment (a_value: INTEGER_32)
{}
Set variable rl_change_environment value
rl_char_is_quoted_p: POINTER
{}
rl_char_is_quoted_p
address_of_rl_char_is_quoted_p: POINTER
{}
Address of rl_char_is_quoted_p
set_rl_char_is_quoted_p (a_value: POINTER)
{}
Set variable rl_char_is_quoted_p value
rl_char_search (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_char_search (in /usr/include/readline/readline.h) rl_char_search
rl_character_len (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_character_len (in /usr/include/readline/readline.h) rl_character_len
rl_cleanup_after_signal
{}
function rl_cleanup_after_signal (in /usr/include/readline/readline.h) rl_cleanup_after_signal
rl_clear_history
{}
function rl_clear_history (in /usr/include/readline/readline.h) rl_clear_history
rl_clear_message: INTEGER_32
{}
function rl_clear_message (in /usr/include/readline/readline.h) rl_clear_message
rl_clear_pending_input: INTEGER_32
{}
function rl_clear_pending_input (in /usr/include/readline/readline.h) rl_clear_pending_input
rl_clear_screen (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_clear_screen (in /usr/include/readline/readline.h) rl_clear_screen
rl_clear_signals: INTEGER_32
{}
function rl_clear_signals (in /usr/include/readline/readline.h) rl_clear_signals
rl_complete (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_complete (in /usr/include/readline/readline.h) rl_complete
rl_complete_internal (argument_1: INTEGER_32): INTEGER_32
{}
function rl_complete_internal (in /usr/include/readline/readline.h) rl_complete_internal
rl_completer_quote_characters: POINTER
{}
rl_completer_quote_characters
address_of_rl_completer_quote_characters: POINTER
{}
Address of rl_completer_quote_characters
set_rl_completer_quote_characters (a_value: POINTER)
{}
Set variable rl_completer_quote_characters value
rl_completer_word_break_characters: POINTER
{}
rl_completer_word_break_characters
address_of_rl_completer_word_break_characters: POINTER
{}
Address of rl_completer_word_break_characters
set_rl_completer_word_break_characters (a_value: POINTER)
{}
Set variable rl_completer_word_break_characters value
rl_completion_append_character: INTEGER_32
{}
rl_completion_append_character
address_of_rl_completion_append_character: POINTER
{}
Address of rl_completion_append_character
set_rl_completion_append_character (a_value: INTEGER_32)
{}
Set variable rl_completion_append_character value
rl_completion_display_matches_hook: POINTER
{}
rl_completion_display_matches_hook
address_of_rl_completion_display_matches_hook: POINTER
{}
Address of rl_completion_display_matches_hook
set_rl_completion_display_matches_hook (a_value: POINTER)
{}
Set variable rl_completion_display_matches_hook value
rl_completion_entry_function: POINTER
{}
rl_completion_entry_function
address_of_rl_completion_entry_function: POINTER
{}
Address of rl_completion_entry_function
set_rl_completion_entry_function (a_value: POINTER)
{}
Set variable rl_completion_entry_function value
rl_completion_found_quote: INTEGER_32
{}
rl_completion_found_quote
address_of_rl_completion_found_quote: POINTER
{}
Address of rl_completion_found_quote
set_rl_completion_found_quote (a_value: INTEGER_32)
{}
Set variable rl_completion_found_quote value
rl_completion_invoking_key: INTEGER_32
{}
rl_completion_invoking_key
address_of_rl_completion_invoking_key: POINTER
{}
Address of rl_completion_invoking_key
set_rl_completion_invoking_key (a_value: INTEGER_32)
{}
Set variable rl_completion_invoking_key value
{}
rl_completion_mark_symlink_dirs
{}
Address of rl_completion_mark_symlink_dirs
{}
Set variable rl_completion_mark_symlink_dirs value
rl_completion_matches (argument_1: POINTER, argument_2: POINTER): POINTER
{}
function rl_completion_matches (in /usr/include/readline/readline.h) rl_completion_matches
rl_completion_mode (argument_1: POINTER): INTEGER_32
{}
function rl_completion_mode (in /usr/include/readline/readline.h) rl_completion_mode
rl_completion_query_items: INTEGER_32
{}
rl_completion_query_items
address_of_rl_completion_query_items: POINTER
{}
Address of rl_completion_query_items
set_rl_completion_query_items (a_value: INTEGER_32)
{}
Set variable rl_completion_query_items value
rl_completion_quote_character: INTEGER_32
{}
rl_completion_quote_character
address_of_rl_completion_quote_character: POINTER
{}
Address of rl_completion_quote_character
set_rl_completion_quote_character (a_value: INTEGER_32)
{}
Set variable rl_completion_quote_character value
rl_completion_suppress_append: INTEGER_32
{}
rl_completion_suppress_append
address_of_rl_completion_suppress_append: POINTER
{}
Address of rl_completion_suppress_append
set_rl_completion_suppress_append (a_value: INTEGER_32)
{}
Set variable rl_completion_suppress_append value
rl_completion_suppress_quote: INTEGER_32
{}
rl_completion_suppress_quote
address_of_rl_completion_suppress_quote: POINTER
{}
Address of rl_completion_suppress_quote
set_rl_completion_suppress_quote (a_value: INTEGER_32)
{}
Set variable rl_completion_suppress_quote value
rl_completion_type: INTEGER_32
{}
rl_completion_type
address_of_rl_completion_type: POINTER
{}
Address of rl_completion_type
set_rl_completion_type (a_value: INTEGER_32)
{}
Set variable rl_completion_type value
rl_completion_word_break_hook: POINTER
{}
rl_completion_word_break_hook
address_of_rl_completion_word_break_hook: POINTER
{}
Address of rl_completion_word_break_hook
set_rl_completion_word_break_hook (a_value: POINTER)
{}
Set variable rl_completion_word_break_hook value
rl_copy_backward_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_copy_backward_word (in /usr/include/readline/readline.h) rl_copy_backward_word
rl_copy_forward_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_copy_forward_word (in /usr/include/readline/readline.h) rl_copy_forward_word
rl_copy_region_to_kill (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_copy_region_to_kill (in /usr/include/readline/readline.h) rl_copy_region_to_kill
rl_copy_text (argument_1: INTEGER_32, argument_2: INTEGER_32): POINTER
{}
function rl_copy_text (in /usr/include/readline/readline.h) rl_copy_text
rl_crlf: INTEGER_32
{}
function rl_crlf (in /usr/include/readline/readline.h) rl_crlf
rl_delete (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_delete (in /usr/include/readline/readline.h) rl_delete
rl_delete_horizontal_space (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_delete_horizontal_space (in /usr/include/readline/readline.h) rl_delete_horizontal_space
rl_delete_or_show_completions (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_delete_or_show_completions (in /usr/include/readline/readline.h) rl_delete_or_show_completions
rl_delete_text (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_delete_text (in /usr/include/readline/readline.h) rl_delete_text
rl_deprep_term_function: POINTER
{}
rl_deprep_term_function
address_of_rl_deprep_term_function: POINTER
{}
Address of rl_deprep_term_function
set_rl_deprep_term_function (a_value: POINTER)
{}
Set variable rl_deprep_term_function value
rl_deprep_terminal
{}
function rl_deprep_terminal (in /usr/include/readline/readline.h) rl_deprep_terminal
rl_digit_argument (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_digit_argument (in /usr/include/readline/readline.h) rl_digit_argument
rl_ding: INTEGER_32
{}
function rl_ding (in /usr/include/readline/readline.h) rl_ding
rl_directory_completion_hook: POINTER
{}
rl_directory_completion_hook
address_of_rl_directory_completion_hook: POINTER
{}
Address of rl_directory_completion_hook
set_rl_directory_completion_hook (a_value: POINTER)
{}
Set variable rl_directory_completion_hook value
rl_directory_rewrite_hook: POINTER
{}
rl_directory_rewrite_hook
address_of_rl_directory_rewrite_hook: POINTER
{}
Address of rl_directory_rewrite_hook
set_rl_directory_rewrite_hook (a_value: POINTER)
{}
Set variable rl_directory_rewrite_hook value
rl_discard_argument: INTEGER_32
{}
function rl_discard_argument (in /usr/include/readline/readline.h) rl_discard_argument
rl_dispatching: INTEGER_32
{}
rl_dispatching
address_of_rl_dispatching: POINTER
{}
Address of rl_dispatching
set_rl_dispatching (a_value: INTEGER_32)
{}
Set variable rl_dispatching value
rl_display_match_list (argument_1: POINTER, argument_2: INTEGER_32, argument_3: INTEGER_32)
{}
function rl_display_match_list (in /usr/include/readline/readline.h) rl_display_match_list
rl_display_prompt: POINTER
{}
rl_display_prompt
address_of_rl_display_prompt: POINTER
{}
Address of rl_display_prompt
set_rl_display_prompt (a_value: POINTER)
{}
Set variable rl_display_prompt value
rl_do_lowercase_version (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_do_lowercase_version (in /usr/include/readline/readline.h) rl_do_lowercase_version
rl_do_undo: INTEGER_32
{}
function rl_do_undo (in /usr/include/readline/readline.h) rl_do_undo
rl_done: INTEGER_32
{}
rl_done
address_of_rl_done: POINTER
{}
Address of rl_done
set_rl_done (a_value: INTEGER_32)
{}
Set variable rl_done value
rl_downcase_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_downcase_word (in /usr/include/readline/readline.h) rl_downcase_word
rl_dump_functions (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_dump_functions (in /usr/include/readline/readline.h) rl_dump_functions
rl_dump_macros (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_dump_macros (in /usr/include/readline/readline.h) rl_dump_macros
rl_dump_variables (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_dump_variables (in /usr/include/readline/readline.h) rl_dump_variables
rl_echo_signal_char (argument_1: INTEGER_32)
{}
function rl_echo_signal_char (in /usr/include/readline/readline.h) rl_echo_signal_char
rl_editing_mode: INTEGER_32
{}
rl_editing_mode
address_of_rl_editing_mode: POINTER
{}
Address of rl_editing_mode
set_rl_editing_mode (a_value: INTEGER_32)
{}
Set variable rl_editing_mode value
rl_emacs_editing_mode (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_emacs_editing_mode (in /usr/include/readline/readline.h) rl_emacs_editing_mode
rl_end: INTEGER_32
{}
rl_end
address_of_rl_end: POINTER
{}
Address of rl_end
set_rl_end (a_value: INTEGER_32)
{}
Set variable rl_end value
rl_end_kbd_macro (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_end_kbd_macro (in /usr/include/readline/readline.h) rl_end_kbd_macro
rl_end_of_history (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_end_of_history (in /usr/include/readline/readline.h) rl_end_of_history
rl_end_of_line (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_end_of_line (in /usr/include/readline/readline.h) rl_end_of_line
rl_end_undo_group: INTEGER_32
{}
function rl_end_undo_group (in /usr/include/readline/readline.h) rl_end_undo_group
rl_erase_empty_line: INTEGER_32
{}
rl_erase_empty_line
address_of_rl_erase_empty_line: POINTER
{}
Address of rl_erase_empty_line
set_rl_erase_empty_line (a_value: INTEGER_32)
{}
Set variable rl_erase_empty_line value
rl_event_hook: POINTER
{}
rl_event_hook
address_of_rl_event_hook: POINTER
{}
Address of rl_event_hook
set_rl_event_hook (a_value: POINTER)
{}
Set variable rl_event_hook value
rl_exchange_point_and_mark (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_exchange_point_and_mark (in /usr/include/readline/readline.h) rl_exchange_point_and_mark
rl_execute_next (argument_1: INTEGER_32): INTEGER_32
{}
function rl_execute_next (in /usr/include/readline/readline.h) rl_execute_next
rl_executing_key: INTEGER_32
{}
rl_executing_key
address_of_rl_executing_key: POINTER
{}
Address of rl_executing_key
set_rl_executing_key (a_value: INTEGER_32)
{}
Set variable rl_executing_key value
rl_executing_keymap: POINTER
{}
rl_executing_keymap
address_of_rl_executing_keymap: POINTER
{}
Address of rl_executing_keymap
set_rl_executing_keymap (a_value: POINTER)
{}
Set variable rl_executing_keymap value
rl_executing_keyseq: POINTER
{}
rl_executing_keyseq
address_of_rl_executing_keyseq: POINTER
{}
Address of rl_executing_keyseq
set_rl_executing_keyseq (a_value: POINTER)
{}
Set variable rl_executing_keyseq value
rl_executing_macro: POINTER
{}
rl_executing_macro
address_of_rl_executing_macro: POINTER
{}
Address of rl_executing_macro
set_rl_executing_macro (a_value: POINTER)
{}
Set variable rl_executing_macro value
rl_expand_prompt (argument_1: POINTER): INTEGER_32
{}
function rl_expand_prompt (in /usr/include/readline/readline.h) rl_expand_prompt
rl_explicit_arg: INTEGER_32
{}
rl_explicit_arg
address_of_rl_explicit_arg: POINTER
{}
Address of rl_explicit_arg
set_rl_explicit_arg (a_value: INTEGER_32)
{}
Set variable rl_explicit_arg value
rl_extend_line_buffer (argument_1: INTEGER_32)
{}
function rl_extend_line_buffer (in /usr/include/readline/readline.h) rl_extend_line_buffer
rl_filename_completion_desired: INTEGER_32
{}
rl_filename_completion_desired
address_of_rl_filename_completion_desired: POINTER
{}
Address of rl_filename_completion_desired
set_rl_filename_completion_desired (a_value: INTEGER_32)
{}
Set variable rl_filename_completion_desired value
rl_filename_completion_function (argument_1: POINTER, argument_2: INTEGER_32): POINTER
{}
function rl_filename_completion_function (in /usr/include/readline/readline.h) rl_filename_completion_function
rl_filename_dequoting_function: POINTER
{}
rl_filename_dequoting_function
address_of_rl_filename_dequoting_function: POINTER
{}
Address of rl_filename_dequoting_function
set_rl_filename_dequoting_function (a_value: POINTER)
{}
Set variable rl_filename_dequoting_function value
rl_filename_quote_characters: POINTER
{}
rl_filename_quote_characters
address_of_rl_filename_quote_characters: POINTER
{}
Address of rl_filename_quote_characters
set_rl_filename_quote_characters (a_value: POINTER)
{}
Set variable rl_filename_quote_characters value
rl_filename_quoting_desired: INTEGER_32
{}
rl_filename_quoting_desired
address_of_rl_filename_quoting_desired: POINTER
{}
Address of rl_filename_quoting_desired
set_rl_filename_quoting_desired (a_value: INTEGER_32)
{}
Set variable rl_filename_quoting_desired value
rl_filename_quoting_function: POINTER
{}
rl_filename_quoting_function
address_of_rl_filename_quoting_function: POINTER
{}
Address of rl_filename_quoting_function
set_rl_filename_quoting_function (a_value: POINTER)
{}
Set variable rl_filename_quoting_function value
rl_filename_rewrite_hook: POINTER
{}
rl_filename_rewrite_hook
address_of_rl_filename_rewrite_hook: POINTER
{}
Address of rl_filename_rewrite_hook
set_rl_filename_rewrite_hook (a_value: POINTER)
{}
Set variable rl_filename_rewrite_hook value
rl_filename_stat_hook: POINTER
{}
rl_filename_stat_hook
address_of_rl_filename_stat_hook: POINTER
{}
Address of rl_filename_stat_hook
set_rl_filename_stat_hook (a_value: POINTER)
{}
Set variable rl_filename_stat_hook value
rl_forced_update_display: INTEGER_32
{}
function rl_forced_update_display (in /usr/include/readline/readline.h) rl_forced_update_display
rl_forward (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_forward (in /usr/include/readline/readline.h) rl_forward
rl_forward_byte (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_forward_byte (in /usr/include/readline/readline.h) rl_forward_byte
rl_forward_char (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_forward_char (in /usr/include/readline/readline.h) rl_forward_char
rl_forward_search_history (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_forward_search_history (in /usr/include/readline/readline.h) rl_forward_search_history
rl_forward_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_forward_word (in /usr/include/readline/readline.h) rl_forward_word
rl_free (argument_1: POINTER)
{}
function rl_free (in /usr/include/readline/readline.h) rl_free
rl_free_keymap (argument_1: POINTER)
{}
function rl_free_keymap (in /usr/include/readline/readline.h) rl_free_keymap
rl_free_line_state
{}
function rl_free_line_state (in /usr/include/readline/readline.h) rl_free_line_state
rl_free_undo_list
{}
function rl_free_undo_list (in /usr/include/readline/readline.h) rl_free_undo_list
rl_function_dumper (argument_1: INTEGER_32)
{}
function rl_function_dumper (in /usr/include/readline/readline.h) rl_function_dumper
rl_function_of_keyseq (argument_1: POINTER, argument_2: POINTER, argument_3: POINTER): POINTER
{}
function rl_function_of_keyseq (in /usr/include/readline/readline.h) rl_function_of_keyseq
rl_funmap_names: POINTER
{}
function rl_funmap_names (in /usr/include/readline/readline.h) rl_funmap_names
rl_generic_bind (argument_1: INTEGER_32, argument_2: POINTER, argument_3: POINTER, argument_4: POINTER): INTEGER_32
{}
function rl_generic_bind (in /usr/include/readline/readline.h) rl_generic_bind
rl_get_keymap_name (argument_1: POINTER): POINTER
{}
function rl_get_keymap_name (in /usr/include/readline/readline.h) rl_get_keymap_name
rl_get_keymap_name_from_edit_mode: POINTER
{}
function rl_get_keymap_name_from_edit_mode (in /usr/include/readline/readline.h) rl_get_keymap_name_from_edit_mode
rl_get_next_history (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_get_next_history (in /usr/include/readline/readline.h) rl_get_next_history
rl_get_previous_history (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_get_previous_history (in /usr/include/readline/readline.h) rl_get_previous_history
rl_get_screen_size (argument_1: POINTER, argument_2: POINTER)
{}
function rl_get_screen_size (in /usr/include/readline/readline.h) rl_get_screen_size
rl_get_termcap (argument_1: POINTER): POINTER
{}
function rl_get_termcap (in /usr/include/readline/readline.h) rl_get_termcap
rl_getc (argument_1: POINTER): INTEGER_32
{}
function rl_getc (in /usr/include/readline/readline.h) rl_getc
rl_getc_function: POINTER
{}
rl_getc_function
address_of_rl_getc_function: POINTER
{}
Address of rl_getc_function
set_rl_getc_function (a_value: POINTER)
{}
Set variable rl_getc_function value
rl_gnu_readline_p: INTEGER_32
{}
rl_gnu_readline_p
address_of_rl_gnu_readline_p: POINTER
{}
Address of rl_gnu_readline_p
set_rl_gnu_readline_p (a_value: INTEGER_32)
{}
Set variable rl_gnu_readline_p value
rl_history_search_backward (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_history_search_backward (in /usr/include/readline/readline.h) rl_history_search_backward
rl_history_search_forward (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_history_search_forward (in /usr/include/readline/readline.h) rl_history_search_forward
rl_history_substr_search_backward (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_history_substr_search_backward (in /usr/include/readline/readline.h) rl_history_substr_search_backward
rl_history_substr_search_forward (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_history_substr_search_forward (in /usr/include/readline/readline.h) rl_history_substr_search_forward
rl_ignore_completion_duplicates: INTEGER_32
{}
rl_ignore_completion_duplicates
address_of_rl_ignore_completion_duplicates: POINTER
{}
Address of rl_ignore_completion_duplicates
set_rl_ignore_completion_duplicates (a_value: INTEGER_32)
{}
Set variable rl_ignore_completion_duplicates value
rl_ignore_some_completions_function: POINTER
{}
rl_ignore_some_completions_function
address_of_rl_ignore_some_completions_function: POINTER
{}
Address of rl_ignore_some_completions_function
set_rl_ignore_some_completions_function (a_value: POINTER)
{}
Set variable rl_ignore_some_completions_function value
rl_inhibit_completion: INTEGER_32
{}
rl_inhibit_completion
address_of_rl_inhibit_completion: POINTER
{}
Address of rl_inhibit_completion
set_rl_inhibit_completion (a_value: INTEGER_32)
{}
Set variable rl_inhibit_completion value
rl_initialize: INTEGER_32
{}
function rl_initialize (in /usr/include/readline/readline.h) rl_initialize
rl_initialize_funmap
{}
function rl_initialize_funmap (in /usr/include/readline/readline.h) rl_initialize_funmap
rl_input_available_hook: POINTER
{}
rl_input_available_hook
address_of_rl_input_available_hook: POINTER
{}
Address of rl_input_available_hook
set_rl_input_available_hook (a_value: POINTER)
{}
Set variable rl_input_available_hook value
rl_insert (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_insert (in /usr/include/readline/readline.h) rl_insert
rl_insert_close (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_insert_close (in /usr/include/readline/readline.h) rl_insert_close
rl_insert_comment (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_insert_comment (in /usr/include/readline/readline.h) rl_insert_comment
rl_insert_completions (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_insert_completions (in /usr/include/readline/readline.h) rl_insert_completions
rl_insert_mode: INTEGER_32
{}
rl_insert_mode
address_of_rl_insert_mode: POINTER
{}
Address of rl_insert_mode
set_rl_insert_mode (a_value: INTEGER_32)
{}
Set variable rl_insert_mode value
rl_insert_text (argument_1: POINTER): INTEGER_32
{}
function rl_insert_text (in /usr/include/readline/readline.h) rl_insert_text
rl_instream: POINTER
{}
rl_instream
address_of_rl_instream: POINTER
{}
Address of rl_instream
set_rl_instream (a_value: POINTER)
{}
Set variable rl_instream value
rl_invoking_keyseqs (argument_1: POINTER): POINTER
{}
function rl_invoking_keyseqs (in /usr/include/readline/readline.h) rl_invoking_keyseqs
rl_invoking_keyseqs_in_map (argument_1: POINTER, argument_2: POINTER): POINTER
{}
function rl_invoking_keyseqs_in_map (in /usr/include/readline/readline.h) rl_invoking_keyseqs_in_map
rl_key_sequence_length: INTEGER_32
{}
rl_key_sequence_length
address_of_rl_key_sequence_length: POINTER
{}
Address of rl_key_sequence_length
set_rl_key_sequence_length (a_value: INTEGER_32)
{}
Set variable rl_key_sequence_length value
rl_kill_full_line (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_kill_full_line (in /usr/include/readline/readline.h) rl_kill_full_line
rl_kill_line (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_kill_line (in /usr/include/readline/readline.h) rl_kill_line
rl_kill_region (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_kill_region (in /usr/include/readline/readline.h) rl_kill_region
rl_kill_text (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_kill_text (in /usr/include/readline/readline.h) rl_kill_text
rl_kill_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_kill_word (in /usr/include/readline/readline.h) rl_kill_word
rl_last_func: POINTER
{}
rl_last_func
address_of_rl_last_func: POINTER
{}
Address of rl_last_func
set_rl_last_func (a_value: POINTER)
{}
Set variable rl_last_func value
rl_library_version: POINTER
{}
rl_library_version
address_of_rl_library_version: POINTER
{}
Address of rl_library_version
set_rl_library_version (a_value: POINTER)
{}
Set variable rl_library_version value
rl_line_buffer: POINTER
{}
rl_line_buffer
address_of_rl_line_buffer: POINTER
{}
Address of rl_line_buffer
set_rl_line_buffer (a_value: POINTER)
{}
Set variable rl_line_buffer value
rl_list_funmap_names
{}
function rl_list_funmap_names (in /usr/include/readline/readline.h) rl_list_funmap_names
rl_macro_bind (argument_1: POINTER, argument_2: POINTER, argument_3: POINTER): INTEGER_32
{}
function rl_macro_bind (in /usr/include/readline/readline.h) rl_macro_bind
rl_macro_dumper (argument_1: INTEGER_32)
{}
function rl_macro_dumper (in /usr/include/readline/readline.h) rl_macro_dumper
rl_mark: INTEGER_32
{}
rl_mark
address_of_rl_mark: POINTER
{}
Address of rl_mark
set_rl_mark (a_value: INTEGER_32)
{}
Set variable rl_mark value
rl_maybe_replace_line: INTEGER_32
{}
function rl_maybe_replace_line (in /usr/include/readline/readline.h) rl_maybe_replace_line
rl_maybe_save_line: INTEGER_32
{}
function rl_maybe_save_line (in /usr/include/readline/readline.h) rl_maybe_save_line
rl_maybe_unsave_line: INTEGER_32
{}
function rl_maybe_unsave_line (in /usr/include/readline/readline.h) rl_maybe_unsave_line
rl_menu_complete (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_menu_complete (in /usr/include/readline/readline.h) rl_menu_complete
rl_menu_completion_entry_function: POINTER
{}
rl_menu_completion_entry_function
address_of_rl_menu_completion_entry_function: POINTER
{}
Address of rl_menu_completion_entry_function
set_rl_menu_completion_entry_function (a_value: POINTER)
{}
Set variable rl_menu_completion_entry_function value
rl_message: INTEGER_32
{}
function rl_message (in /usr/include/readline/readline.h) rl_message
rl_modifying (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_modifying (in /usr/include/readline/readline.h) rl_modifying
rl_named_function (argument_1: POINTER): POINTER
{}
function rl_named_function (in /usr/include/readline/readline.h) rl_named_function
rl_newline (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_newline (in /usr/include/readline/readline.h) rl_newline
rl_noninc_forward_search (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_noninc_forward_search (in /usr/include/readline/readline.h) rl_noninc_forward_search
rl_noninc_forward_search_again (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_noninc_forward_search_again (in /usr/include/readline/readline.h) rl_noninc_forward_search_again
rl_noninc_reverse_search (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_noninc_reverse_search (in /usr/include/readline/readline.h) rl_noninc_reverse_search
rl_noninc_reverse_search_again (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_noninc_reverse_search_again (in /usr/include/readline/readline.h) rl_noninc_reverse_search_again
rl_num_chars_to_read: INTEGER_32
{}
rl_num_chars_to_read
address_of_rl_num_chars_to_read: POINTER
{}
Address of rl_num_chars_to_read
set_rl_num_chars_to_read (a_value: INTEGER_32)
{}
Set variable rl_num_chars_to_read value
rl_numeric_arg: INTEGER_32
{}
rl_numeric_arg
address_of_rl_numeric_arg: POINTER
{}
Address of rl_numeric_arg
set_rl_numeric_arg (a_value: INTEGER_32)
{}
Set variable rl_numeric_arg value
rl_old_menu_complete (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_old_menu_complete (in /usr/include/readline/readline.h) rl_old_menu_complete
rl_on_new_line: INTEGER_32
{}
function rl_on_new_line (in /usr/include/readline/readline.h) rl_on_new_line
rl_on_new_line_with_prompt: INTEGER_32
{}
function rl_on_new_line_with_prompt (in /usr/include/readline/readline.h) rl_on_new_line_with_prompt
rl_outstream: POINTER
{}
rl_outstream
address_of_rl_outstream: POINTER
{}
Address of rl_outstream
set_rl_outstream (a_value: POINTER)
{}
Set variable rl_outstream value
rl_overwrite_mode (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_overwrite_mode (in /usr/include/readline/readline.h) rl_overwrite_mode
rl_parse_and_bind (argument_1: POINTER): INTEGER_32
{}
function rl_parse_and_bind (in /usr/include/readline/readline.h) rl_parse_and_bind
rl_pending_input: INTEGER_32
{}
rl_pending_input
address_of_rl_pending_input: POINTER
{}
Address of rl_pending_input
set_rl_pending_input (a_value: INTEGER_32)
{}
Set variable rl_pending_input value
rl_point: INTEGER_32
{}
rl_point
address_of_rl_point: POINTER
{}
Address of rl_point
set_rl_point (a_value: INTEGER_32)
{}
Set variable rl_point value
rl_possible_completions (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_possible_completions (in /usr/include/readline/readline.h) rl_possible_completions
rl_pre_input_hook: POINTER
{}
rl_pre_input_hook
address_of_rl_pre_input_hook: POINTER
{}
Address of rl_pre_input_hook
set_rl_pre_input_hook (a_value: POINTER)
{}
Set variable rl_pre_input_hook value
rl_prefer_env_winsize: INTEGER_32
{}
rl_prefer_env_winsize
address_of_rl_prefer_env_winsize: POINTER
{}
Address of rl_prefer_env_winsize
set_rl_prefer_env_winsize (a_value: INTEGER_32)
{}
Set variable rl_prefer_env_winsize value
rl_prep_term_function: POINTER
{}
rl_prep_term_function
address_of_rl_prep_term_function: POINTER
{}
Address of rl_prep_term_function
set_rl_prep_term_function (a_value: POINTER)
{}
Set variable rl_prep_term_function value
rl_prep_terminal (argument_1: INTEGER_32)
{}
function rl_prep_terminal (in /usr/include/readline/readline.h) rl_prep_terminal
rl_print_last_kbd_macro (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_print_last_kbd_macro (in /usr/include/readline/readline.h) rl_print_last_kbd_macro
rl_prompt: POINTER
{}
rl_prompt
address_of_rl_prompt: POINTER
{}
Address of rl_prompt
set_rl_prompt (a_value: POINTER)
{}
Set variable rl_prompt value
rl_push_macro_input (argument_1: POINTER)
{}
function rl_push_macro_input (in /usr/include/readline/readline.h) rl_push_macro_input
rl_quoted_insert (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_quoted_insert (in /usr/include/readline/readline.h) rl_quoted_insert
rl_re_read_init_file (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_re_read_init_file (in /usr/include/readline/readline.h) rl_re_read_init_file
rl_read_init_file (argument_1: POINTER): INTEGER_32
{}
function rl_read_init_file (in /usr/include/readline/readline.h) rl_read_init_file
rl_read_key: INTEGER_32
{}
function rl_read_key (in /usr/include/readline/readline.h) rl_read_key
rl_readline_name: POINTER
{}
rl_readline_name
address_of_rl_readline_name: POINTER
{}
Address of rl_readline_name
set_rl_readline_name (a_value: POINTER)
{}
Set variable rl_readline_name value
rl_readline_state: INTEGER_32
{}
rl_readline_state
address_of_rl_readline_state: POINTER
{}
Address of rl_readline_state
set_rl_readline_state (a_value: INTEGER_32)
{}
Set variable rl_readline_state value
rl_readline_version: INTEGER_32
{}
rl_readline_version
address_of_rl_readline_version: POINTER
{}
Address of rl_readline_version
set_rl_readline_version (a_value: INTEGER_32)
{}
Set variable rl_readline_version value
rl_redisplay
{}
function rl_redisplay (in /usr/include/readline/readline.h) rl_redisplay
rl_redisplay_function: POINTER
{}
rl_redisplay_function
address_of_rl_redisplay_function: POINTER
{}
Address of rl_redisplay_function
set_rl_redisplay_function (a_value: POINTER)
{}
Set variable rl_redisplay_function value
rl_refresh_line (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_refresh_line (in /usr/include/readline/readline.h) rl_refresh_line
rl_replace_line (argument_1: POINTER, argument_2: INTEGER_32)
{}
function rl_replace_line (in /usr/include/readline/readline.h) rl_replace_line
rl_reset_after_signal
{}
function rl_reset_after_signal (in /usr/include/readline/readline.h) rl_reset_after_signal
rl_reset_line_state: INTEGER_32
{}
function rl_reset_line_state (in /usr/include/readline/readline.h) rl_reset_line_state
rl_reset_screen_size
{}
function rl_reset_screen_size (in /usr/include/readline/readline.h) rl_reset_screen_size
rl_reset_terminal (argument_1: POINTER): INTEGER_32
{}
function rl_reset_terminal (in /usr/include/readline/readline.h) rl_reset_terminal
rl_resize_terminal
{}
function rl_resize_terminal (in /usr/include/readline/readline.h) rl_resize_terminal
rl_restart_output (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_restart_output (in /usr/include/readline/readline.h) rl_restart_output
rl_restore_prompt
{}
function rl_restore_prompt (in /usr/include/readline/readline.h) rl_restore_prompt
rl_restore_state (argument_1: POINTER): INTEGER_32
{}
function rl_restore_state (in /usr/include/readline/readline.h) rl_restore_state
rl_reverse_search_history (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_reverse_search_history (in /usr/include/readline/readline.h) rl_reverse_search_history
rl_revert_line (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_revert_line (in /usr/include/readline/readline.h) rl_revert_line
rl_rubout (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_rubout (in /usr/include/readline/readline.h) rl_rubout
rl_rubout_or_delete (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_rubout_or_delete (in /usr/include/readline/readline.h) rl_rubout_or_delete
rl_save_prompt
{}
function rl_save_prompt (in /usr/include/readline/readline.h) rl_save_prompt
rl_save_state (argument_1: POINTER): INTEGER_32
{}
function rl_save_state (in /usr/include/readline/readline.h) rl_save_state
rl_set_key (argument_1: POINTER, argument_2: POINTER, argument_3: POINTER): INTEGER_32
{}
function rl_set_key (in /usr/include/readline/readline.h) rl_set_key
rl_set_keyboard_input_timeout (argument_1: INTEGER_32): INTEGER_32
{}
function rl_set_keyboard_input_timeout (in /usr/include/readline/readline.h) rl_set_keyboard_input_timeout
rl_set_keymap_from_edit_mode
{}
function rl_set_keymap_from_edit_mode (in /usr/include/readline/readline.h) rl_set_keymap_from_edit_mode
rl_set_mark (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_set_mark (in /usr/include/readline/readline.h) rl_set_mark
{}
function rl_set_paren_blink_timeout (in /usr/include/readline/readline.h) rl_set_paren_blink_timeout
rl_set_prompt (argument_1: POINTER): INTEGER_32
{}
function rl_set_prompt (in /usr/include/readline/readline.h) rl_set_prompt
rl_set_screen_size (argument_1: INTEGER_32, argument_2: INTEGER_32)
{}
function rl_set_screen_size (in /usr/include/readline/readline.h) rl_set_screen_size
rl_set_signals: INTEGER_32
{}
function rl_set_signals (in /usr/include/readline/readline.h) rl_set_signals
rl_show_char (argument_1: INTEGER_32): INTEGER_32
{}
function rl_show_char (in /usr/include/readline/readline.h) rl_show_char
rl_signal_event_hook: POINTER
{}
rl_signal_event_hook
address_of_rl_signal_event_hook: POINTER
{}
Address of rl_signal_event_hook
set_rl_signal_event_hook (a_value: POINTER)
{}
Set variable rl_signal_event_hook value
rl_skip_csi_sequence (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_skip_csi_sequence (in /usr/include/readline/readline.h) rl_skip_csi_sequence
rl_sort_completion_matches: INTEGER_32
{}
rl_sort_completion_matches
address_of_rl_sort_completion_matches: POINTER
{}
Address of rl_sort_completion_matches
set_rl_sort_completion_matches (a_value: INTEGER_32)
{}
Set variable rl_sort_completion_matches value
rl_special_prefixes: POINTER
{}
rl_special_prefixes
address_of_rl_special_prefixes: POINTER
{}
Address of rl_special_prefixes
set_rl_special_prefixes (a_value: POINTER)
{}
Set variable rl_special_prefixes value
rl_start_kbd_macro (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_start_kbd_macro (in /usr/include/readline/readline.h) rl_start_kbd_macro
rl_startup_hook: POINTER
{}
rl_startup_hook
address_of_rl_startup_hook: POINTER
{}
Address of rl_startup_hook
set_rl_startup_hook (a_value: POINTER)
{}
Set variable rl_startup_hook value
rl_stop_output (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_stop_output (in /usr/include/readline/readline.h) rl_stop_output
rl_stuff_char (argument_1: INTEGER_32): INTEGER_32
{}
function rl_stuff_char (in /usr/include/readline/readline.h) rl_stuff_char
rl_tab_insert (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_tab_insert (in /usr/include/readline/readline.h) rl_tab_insert
rl_terminal_name: POINTER
{}
rl_terminal_name
address_of_rl_terminal_name: POINTER
{}
Address of rl_terminal_name
set_rl_terminal_name (a_value: POINTER)
{}
Set variable rl_terminal_name value
rl_tilde_expand (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_tilde_expand (in /usr/include/readline/readline.h) rl_tilde_expand
rl_translate_keyseq (argument_1: POINTER, argument_2: POINTER, argument_3: POINTER): INTEGER_32
{}
function rl_translate_keyseq (in /usr/include/readline/readline.h) rl_translate_keyseq
rl_transpose_chars (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_transpose_chars (in /usr/include/readline/readline.h) rl_transpose_chars
rl_transpose_words (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_transpose_words (in /usr/include/readline/readline.h) rl_transpose_words
rl_tty_set_default_bindings (argument_1: POINTER)
{}
function rl_tty_set_default_bindings (in /usr/include/readline/readline.h) rl_tty_set_default_bindings
rl_tty_status (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_tty_status (in /usr/include/readline/readline.h) rl_tty_status
rl_tty_unset_default_bindings (argument_1: POINTER)
{}
function rl_tty_unset_default_bindings (in /usr/include/readline/readline.h) rl_tty_unset_default_bindings
rl_unbind_command_in_map (argument_1: POINTER, argument_2: POINTER): INTEGER_32
{}
function rl_unbind_command_in_map (in /usr/include/readline/readline.h) rl_unbind_command_in_map
rl_unbind_function_in_map (argument_1: POINTER, argument_2: POINTER): INTEGER_32
{}
function rl_unbind_function_in_map (in /usr/include/readline/readline.h) rl_unbind_function_in_map
rl_unbind_key (argument_1: INTEGER_32): INTEGER_32
{}
function rl_unbind_key (in /usr/include/readline/readline.h) rl_unbind_key
rl_unbind_key_in_map (argument_1: INTEGER_32, argument_2: POINTER): INTEGER_32
{}
function rl_unbind_key_in_map (in /usr/include/readline/readline.h) rl_unbind_key_in_map
rl_undo_command (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_undo_command (in /usr/include/readline/readline.h) rl_undo_command
rl_undo_list: POINTER
{}
rl_undo_list
address_of_rl_undo_list: POINTER
{}
Address of rl_undo_list
set_rl_undo_list (a_value: POINTER)
{}
Set variable rl_undo_list value
rl_universal_argument (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_universal_argument (in /usr/include/readline/readline.h) rl_universal_argument
rl_unix_filename_rubout (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_unix_filename_rubout (in /usr/include/readline/readline.h) rl_unix_filename_rubout
rl_unix_line_discard (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_unix_line_discard (in /usr/include/readline/readline.h) rl_unix_line_discard
rl_unix_word_rubout (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_unix_word_rubout (in /usr/include/readline/readline.h) rl_unix_word_rubout
rl_untranslate_keyseq (argument_1: INTEGER_32): POINTER
{}
function rl_untranslate_keyseq (in /usr/include/readline/readline.h) rl_untranslate_keyseq
rl_upcase_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_upcase_word (in /usr/include/readline/readline.h) rl_upcase_word
rl_username_completion_function (argument_1: POINTER, argument_2: INTEGER_32): POINTER
{}
function rl_username_completion_function (in /usr/include/readline/readline.h) rl_username_completion_function
rl_variable_bind (argument_1: POINTER, argument_2: POINTER): INTEGER_32
{}
function rl_variable_bind (in /usr/include/readline/readline.h) rl_variable_bind
rl_variable_dumper (argument_1: INTEGER_32)
{}
function rl_variable_dumper (in /usr/include/readline/readline.h) rl_variable_dumper
rl_variable_value (argument_1: POINTER): POINTER
{}
function rl_variable_value (in /usr/include/readline/readline.h) rl_variable_value
rl_vi_append_eol (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_append_eol (in /usr/include/readline/readline.h) rl_vi_append_eol
rl_vi_append_mode (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_append_mode (in /usr/include/readline/readline.h) rl_vi_append_mode
rl_vi_arg_digit (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_arg_digit (in /usr/include/readline/readline.h) rl_vi_arg_digit
rl_vi_b_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_bWord (in /usr/include/readline/readline.h) rl_vi_bWord
rl_vi_back_to_indent (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_back_to_indent (in /usr/include/readline/readline.h) rl_vi_back_to_indent
rl_vi_bracktype (argument_1: INTEGER_32): INTEGER_32
{}
function rl_vi_bracktype (in /usr/include/readline/readline.h) rl_vi_bracktype
rl_vi_bword (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_bword (in /usr/include/readline/readline.h) rl_vi_bword
rl_vi_change_case (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_change_case (in /usr/include/readline/readline.h) rl_vi_change_case
rl_vi_change_char (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_change_char (in /usr/include/readline/readline.h) rl_vi_change_char
rl_vi_change_to (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_change_to (in /usr/include/readline/readline.h) rl_vi_change_to
rl_vi_char_search (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_char_search (in /usr/include/readline/readline.h) rl_vi_char_search
rl_vi_check: INTEGER_32
{}
function rl_vi_check (in /usr/include/readline/readline.h) rl_vi_check
rl_vi_column (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_column (in /usr/include/readline/readline.h) rl_vi_column
rl_vi_complete (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_complete (in /usr/include/readline/readline.h) rl_vi_complete
rl_vi_delete (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_delete (in /usr/include/readline/readline.h) rl_vi_delete
rl_vi_delete_to (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_delete_to (in /usr/include/readline/readline.h) rl_vi_delete_to
rl_vi_domove (argument_1: INTEGER_32, argument_2: POINTER): INTEGER_32
{}
function rl_vi_domove (in /usr/include/readline/readline.h) rl_vi_domove
rl_vi_e_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_eWord (in /usr/include/readline/readline.h) rl_vi_eWord
rl_vi_editing_mode (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_editing_mode (in /usr/include/readline/readline.h) rl_vi_editing_mode
rl_vi_end_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_end_word (in /usr/include/readline/readline.h) rl_vi_end_word
rl_vi_eof_maybe (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_eof_maybe (in /usr/include/readline/readline.h) rl_vi_eof_maybe
rl_vi_eword (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_eword (in /usr/include/readline/readline.h) rl_vi_eword
rl_vi_f_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_fWord (in /usr/include/readline/readline.h) rl_vi_fWord
rl_vi_fetch_history (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_fetch_history (in /usr/include/readline/readline.h) rl_vi_fetch_history
rl_vi_first_print (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_first_print (in /usr/include/readline/readline.h) rl_vi_first_print
rl_vi_fword (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_fword (in /usr/include/readline/readline.h) rl_vi_fword
rl_vi_goto_mark (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_goto_mark (in /usr/include/readline/readline.h) rl_vi_goto_mark
rl_vi_insert_beg (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_insert_beg (in /usr/include/readline/readline.h) rl_vi_insert_beg
rl_vi_insert_mode (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_insert_mode (in /usr/include/readline/readline.h) rl_vi_insert_mode
rl_vi_insertion_mode (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_insertion_mode (in /usr/include/readline/readline.h) rl_vi_insertion_mode
rl_vi_match (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_match (in /usr/include/readline/readline.h) rl_vi_match
rl_vi_movement_mode (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_movement_mode (in /usr/include/readline/readline.h) rl_vi_movement_mode
rl_vi_next_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_next_word (in /usr/include/readline/readline.h) rl_vi_next_word
rl_vi_overstrike (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_overstrike (in /usr/include/readline/readline.h) rl_vi_overstrike
rl_vi_overstrike_delete (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_overstrike_delete (in /usr/include/readline/readline.h) rl_vi_overstrike_delete
rl_vi_prev_word (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_prev_word (in /usr/include/readline/readline.h) rl_vi_prev_word
rl_vi_put (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_put (in /usr/include/readline/readline.h) rl_vi_put
rl_vi_redo (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_redo (in /usr/include/readline/readline.h) rl_vi_redo
rl_vi_replace (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_replace (in /usr/include/readline/readline.h) rl_vi_replace
rl_vi_rubout (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_rubout (in /usr/include/readline/readline.h) rl_vi_rubout
rl_vi_search (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_search (in /usr/include/readline/readline.h) rl_vi_search
rl_vi_search_again (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_search_again (in /usr/include/readline/readline.h) rl_vi_search_again
rl_vi_set_mark (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_set_mark (in /usr/include/readline/readline.h) rl_vi_set_mark
rl_vi_start_inserting (argument_1: INTEGER_32, argument_2: INTEGER_32, argument_3: INTEGER_32)
{}
function rl_vi_start_inserting (in /usr/include/readline/readline.h) rl_vi_start_inserting
rl_vi_subst (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_subst (in /usr/include/readline/readline.h) rl_vi_subst
rl_vi_tilde_expand (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_tilde_expand (in /usr/include/readline/readline.h) rl_vi_tilde_expand
rl_vi_undo (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_undo (in /usr/include/readline/readline.h) rl_vi_undo
rl_vi_yank_arg (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_yank_arg (in /usr/include/readline/readline.h) rl_vi_yank_arg
rl_vi_yank_to (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_vi_yank_to (in /usr/include/readline/readline.h) rl_vi_yank_to
rl_yank (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_yank (in /usr/include/readline/readline.h) rl_yank
rl_yank_last_arg (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_yank_last_arg (in /usr/include/readline/readline.h) rl_yank_last_arg
rl_yank_nth_arg (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_yank_nth_arg (in /usr/include/readline/readline.h) rl_yank_nth_arg
rl_yank_pop (argument_1: INTEGER_32, argument_2: INTEGER_32): INTEGER_32
{}
function rl_yank_pop (in /usr/include/readline/readline.h) rl_yank_pop
long: INTEGER_64
effective function
a query with the same type of c 'long int'.
useful when dealing with code that uses long int variable: just insert th class and mark the type as 'like long'
long_unsigned: NATURAL_64
effective function
a query with the same type of c 'long unsigned int'.
useful when dealing with code that uses long int variable: just insert th class and mark the type as 'like long_unsigned'
comparison_fn_t: POINTER
effective function
typedef comparison_fn_t from /usr/include/stdlib.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
timer_t: POINTER
effective function
typedef timer_t from /usr/include/time.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
clockid_t: INTEGER_32
effective function
typedef clockid_t from /usr/include/time.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
time_t: INTEGER_64
effective function
typedef time_t from /usr/include/time.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
clock_t: INTEGER_64
effective function
typedef clock_t from /usr/include/time.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uintmax_t: NATURAL_64
effective function
typedef uintmax_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
intmax_t: INTEGER_64
effective function
typedef intmax_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uintptr_t: NATURAL_64
effective function
typedef uintptr_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
intptr_t: INTEGER_64
effective function
typedef intptr_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint_fast64_t: NATURAL_64
effective function
typedef uint_fast64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint_fast32_t: NATURAL_64
effective function
typedef uint_fast32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint_fast16_t: NATURAL_64
effective function
typedef uint_fast16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint_fast8_t: CHARACTER
effective function
typedef uint_fast8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int_fast64_t: INTEGER_64
effective function
typedef int_fast64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int_fast32_t: INTEGER_64
effective function
typedef int_fast32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int_fast16_t: INTEGER_64
effective function
typedef int_fast16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int_fast8_t: CHARACTER
effective function
typedef int_fast8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint_least64_t: NATURAL_64
effective function
typedef uint_least64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint_least32_t: NATURAL_32
effective function
typedef uint_least32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint_least16_t: NATURAL_16
effective function
typedef uint_least16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint_least8_t: CHARACTER
effective function
typedef uint_least8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int_least64_t: INTEGER_64
effective function
typedef int_least64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int_least32_t: INTEGER_32
effective function
typedef int_least32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int_least16_t: INTEGER_16
effective function
typedef int_least16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int_least8_t: CHARACTER
effective function
typedef int_least8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint64_t: NATURAL_64
effective function
typedef uint64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint32_t: NATURAL_32
effective function
typedef uint32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint16_t: NATURAL_16
effective function
typedef uint16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
uint8_t: CHARACTER
effective function
typedef uint8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int64_t: INTEGER_64
effective function
typedef int64_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int32_t: INTEGER_32
effective function
typedef int32_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int16_t: INTEGER_16
effective function
typedef int16_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
int8_t: CHARACTER
effective function
typedef int8_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
ssize_t: INTEGER_64
effective function
typedef ssize_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
off64_t: INTEGER_64
effective function
typedef off64_t from /usr/include/stdio.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
off_t: INTEGER_64
effective function
typedef off_t from /usr/include/stdio.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
size_t: NATURAL_64
effective function
typedef size_t from /usr/include/stdlib.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
ptrdiff_t: INTEGER_64
effective function
typedef ptrdiff_t from /usr/include/stdint.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default
error_t: INTEGER_32
effective function
typedef error_t from /usr/include/errno.h Empty by design, used for anchored declarations.
ensure
  • Result.is_default