chore: chvt_str into chvt.c

This commit is contained in:
2024-08-07 00:14:19 +02:00
parent a393cda7e1
commit fe4a52ecfa
3 changed files with 25 additions and 16 deletions

View File

@@ -14,5 +14,12 @@
* @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