1TICKIT_TERM_INPUT_READABLE(3L)ibrary Functions ManuaTlICKIT_TERM_INPUT_READABLE(3)
2
3
4
6 tickit_term_input_readable - read more data from the terminal
7
9 #include <tickit.h>
10
11 void tickit_term_input_readable(TickitTerm *tt);
12
13 Link with -ltickit.
14
16 tickit_term_input_readable() informs the terminal instance that more
17 data is, or may be, available on the input file descriptor, and reads
18 it. Calling this function may block if the underlying file descriptor
19 is in blocking mode. It may result in TICKIT_EV_KEY or TICKIT_EV_MOUSE
20 events being invoked.
21
22 This function also invokes deferred TICKIT_EV_RESIZE events if enabled
23 by tickit_term_observe_sigwinch(3).
24
26 tickit_term_input_readable() returns no value.
27
29 tickit_term_build(3), tickit_term_input_push_bytes(3),
30 tickit_term_bind_event(3), tickit_term(7), tickit(7)
31
32
33
34 TICKIT_TERM_INPUT_READABLE(3)