Convert all console-tools/* applets to "new style" applet definitions
[oweals/busybox.git] / console-tools / clear.c
index b0c6d65d2a028153134d813bf2c4c1be50f39245..b360d34d94a0b60130724b368c403735203c7e81 100644 (file)
@@ -4,11 +4,22 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
- *
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+//config:config CLEAR
+//config:      bool "clear"
+//config:      default y
+//config:      help
+//config:        This program clears the terminal screen.
+
+//applet:IF_CLEAR(APPLET(clear, BB_DIR_USR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_CLEAR) += clear.o
 
-/* no options, no getopt */
+//usage:#define clear_trivial_usage
+//usage:       ""
+//usage:#define clear_full_usage "\n\n"
+//usage:       "Clear screen"
 
 #include "libbb.h"
 
@@ -16,5 +27,5 @@ int clear_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
 int clear_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
 {
        /* home; clear to the end of screen */
-       return printf("\033[H""\033[J") != 6;
+       return full_write1_str("\033[H""\033[J") != 6;
 }