blob: 21a890c9e3762889b8533bb67a53d2fe9979785f [file] [log] [blame]
#include "internal.h"
#include <stdio.h>
const char clear_usage[] = "clear\n"
"\n"
"\tClears the screen.\n";
extern int
clear_main(struct FileInfo * i, int argc, char * * argv)
{
printf("\033[H\033[J");
return 0;
}