mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 20:37:35 +00:00
Make /bin/clear work again.
After I made stdio buffered, we were dropping anything unflushed on exit. Since /bin/clear just prints out some escape sequences without a newline, the entire buffer was being discarded. Also add VirtualConsole::clear() that handles clearing of background VC's.
This commit is contained in:
parent
3e3de67f02
commit
8605711f4b
4 changed files with 19 additions and 3 deletions
|
@ -1,8 +1,9 @@
|
|||
#include <LibC/stdio.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
printf("\033[3J\033[H\033[2J");
|
||||
fflush(stdout);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue