view toys/other/clear.c @ 694:786841fdb1e0

Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style. The actual code should be the same afterward, this is just cosmetic refactoring.
author Rob Landley <rob@landley.net>
date Tue, 13 Nov 2012 17:14:08 -0600
parents 6df4ccc0acbe
children e85e5f3b87c2
line wrap: on
line source

/* clear.c - clear the screen
 *
 * Copyright 2012 Rob Landley <rob@landley.net>

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);
}