Progress: refactor
This commit is contained in:
parent
bae6f47bc5
commit
d9351c583f
@ -21,19 +21,21 @@ using string = std::string;
|
||||
|
||||
#endif // UNIX
|
||||
|
||||
size_t getTermWidth() {
|
||||
#ifdef WIN32
|
||||
size_t getTermWidth() {
|
||||
CONSOLE_SCREEN_BUFFER_INFO csbi;
|
||||
|
||||
GetConsoleScreenBufferInfo( GetStdHandle( STD_OUTPUT_HANDLE ), &csbi );
|
||||
return csbi.srWindow.Right - csbi.srWindow.Left + 1;
|
||||
}
|
||||
#else
|
||||
size_t getTermWidth() {
|
||||
struct winsize w;
|
||||
ioctl( 0, TIOCGWINSZ, &w );
|
||||
|
||||
return w.ws_col;
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
void home( size_t /*UNUSED*/ ) {
|
||||
|
Loading…
Reference in New Issue
Block a user