#ifndef _CHVTH_ #define _CHVTH_ #include #include #include #include #include /** * @brief change foreground virtual terminal to `n` * * @param n virtual terminal number * @return int non-negative value on success */ int chvt(int n); /** * @brief change foreground virtual terminal to `str` * * @param str virtual terminal number (string) * @return int non-negative value on success */ int chvt_str(char *str); #endif