termkey_start, termkey_stop, termkey_is_started - enable or disable terminal operations
Contents
Description
termkey_start() enables the terminal IO operations of the given termkey(7) instance, including sending a terminal control sequence and setting the termios(3) modes required. termkey_stop() disables terminal IO operations, by reversing the steps taken by termkey_start(). A newly- constructed termkey instance will have terminal IO enabled already. termkey_is_started() enquires whether terminal IO is currently enabled.
Name
termkey_start, termkey_stop, termkey_is_started - enable or disable terminal operations
Return Value
If successful, termkey_start() and termkey_stop() return a true value. On failure, zero is returned with
errno set to indicate the failure. termkey_is_started() returns true or false to indicate whether
terminal IO is currently enabled.
See Also
termkey_new(3), termkey(7) TERMKEY_START(3)
Synopsis
#include<termkey.h>inttermkey_start(TermKey*tk);inttermkey_stop(TermKey*tk);inttermkey_is_started(TermKey*tk);
Link with -ltermkey.
