tickit_term_goto - Man Page
move the terminal output cursor
Synopsis
#include <tickit.h> bool tickit_term_goto(TickitTerm *tt, int line, int col); void tickit_term_move(TickitTerm *tt, int downward, int rightward);
Link with -ltickit.
Description
tickit_term_goto() moves the terminal output cursor to the absolute position specified. On some terminals, either line or col may be specified as -1 to move within the line or column it is currently in. Not all terminals may support the partial move ability; so the return value of tickit_term_goto() should be checked after attempting a goto within the line or column to see if it actually worked. If not, the application will have to reset the position using a fully-specified goto.
tickit_term_move() moves the terminal output cursor relative to its current position. Either downward or rightward may be specified as 0 to not move in that direction.
Return Value
tickit_term_goto() returns a boolean value indicating whether it was able to support the requested movement. tickit_term_move() returns no value.
See Also
tickit_term_build(3), tickit_term_print(3), tickit_term(7), tickit(7)
Referenced By
tickit_term(7), tickit_term_chpen(3), tickit_term_clear(3), tickit_term_erasech(3), tickit_term_get_size(3), tickit_term_print(3), tickit_term_scrollrect(3).
The man page tickit_term_move(3) is an alias of tickit_term_goto(3).