ubase/clear.c

11 lines
165 B
C
Raw Normal View History

2013-08-16 10:08:26 +00:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
2013-10-07 18:11:40 +00:00
#include <stdlib.h>
2013-08-16 10:08:26 +00:00
int
main(void)
{
printf("\x1b[2J\x1b[H");
2013-10-07 18:11:40 +00:00
return EXIT_SUCCESS;
2013-08-16 10:08:26 +00:00
}