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 previously
18 set with tickit_term_set_input_fd(), and reads it. Calling this func‐
19 tion may block if the underlying file descriptor is in blocking mode.
20 It may result in TICKIT_EV_KEY or TICKIT_EV_MOUSE 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_new(3), tickit_term_set_input_fd(3),
30 tickit_term_input_push_bytes(3), tickit_term_bind_event(3),
31 tickit_term(7), tickit(7)
32
33
34
35 TICKIT_TERM_INPUT_READABLE(3)