1TICKIT_TERM_PRINT(3)       Library Functions Manual       TICKIT_TERM_PRINT(3)
2
3
4

NAME

6       tickit_term_print - send text to the terminal
7

SYNOPSIS

9       #include <tickit.h>
10
11       void tickit_term_print(TickitTerm *tt, const char *str);
12       void tickit_term_printn(TickitTerm *tt, const char *str, size_t len);
13
14       void tickit_term_printf(TickitTerm *tt, const char *fmt, ...);
15       void tickit_term_vprintf(TickitTerm *tt, const char *fmt, va_list args);
16
17       Link with -ltickit.
18

DESCRIPTION

20       tickit_term_print()  sends  a  string  of  text  to  the terminal to be
21       printed at the current cursor location. The string must  be  free  from
22       any  control  characters.   tickit_term_printn() sends a string at most
23       len characters to be printed.
24
25       tickit_term_printf() sends a string of text  built  by  formatting  the
26       given    arguments    in    the   same   way   that   printf(3)   does.
27       tickit_term_vprintf() is similar, taking its  arguments  instead  in  a
28       va_list as vprintf(3) does.
29

RETURN VALUE

31       tickit_term_print(),   tickit_term_printf()  and  tickit_term_vprintf()
32       return no value.
33

SEE ALSO

35       tickit_term_new(3), tickit_term_set_output_fd(3),  tickit_term_set_out‐
36       put_func(3),         tickit_term_goto(3),        tickit_term_setpen(3),
37       tickit_term_chpen(3), tickit_term_erasech(3) tickit_term(7), tickit(7)
38
39
40
41                                                          TICKIT_TERM_PRINT(3)
Impressum