client: update CLEAR_SCREEN to be consistent with others

Clear screen used a \033 escape sequence while others used a \x
This commit is contained in:
James Prestwood 2022-07-07 10:55:04 -07:00 committed by Denis Kenzior
parent da8a87fcf5
commit e4c3cfd229
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ struct command_family;
#define COLOR_BLUE "\x1B[94m"
#define COLOR_YELLOW "\x1b[33m"
#define COLOR_OFF "\x1B[0m"
#define CLEAR_SCREEN "\033[2J"
#define CLEAR_SCREEN "\x1b[2J"
#define MARGIN " "
void display(const char *format, ...)