view toys/clear.c @ 576:4058eacd4fbc

Whitespace (tabs vs spaces) cleanup.
author Rob Landley <rob@landley.net>
date Wed, 09 May 2012 06:11:23 -0500
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);
}