1
0
mirror of git://git.suckless.org/ubase synced 2025-02-04 12:31:33 +00:00
ubase/clear.c
2014-10-02 23:47:39 +01:00

11 lines
154 B
C

/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <stdlib.h>
int
main(void)
{
printf("\x1b[2J\x1b[H");
return 0;
}