view toys/clear.c @ 575:953c22158c2e

Addition of mktemp
author Elie De Brauwer <eliedebrauwer@gmail.com>
date Tue, 01 May 2012 11:45:45 +0200
parents c5c11dff9308
children
line wrap: on
line source

/* vi: set sw=4 ts=4:
 *
 * clear.c - clear the screen
 *
 * Copyright 2012 Rob Landley <rob@landley.net>
 *
 * Not in SUSv4.

USE_CLEAR(NEWTOY(clear, NULL, TOYFLAG_USR|TOYFLAG_BIN))

config CLEAR
	bool "clear"
	default y
	help
	  Clear the screen.
*/

#include "toys.h"

void clear_main(void)
{
	write(1, "\e[2J\e[H", 7);
}