Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1 | /**************************************************************************** |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2 | * Copyright 2020,2021 Thomas E. Dickey * |
| 3 | * Copyright 1998-2016,2017 Free Software Foundation, Inc. * |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4 | * * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a * |
| 6 | * copy of this software and associated documentation files (the * |
| 7 | * "Software"), to deal in the Software without restriction, including * |
| 8 | * without limitation the rights to use, copy, modify, merge, publish, * |
| 9 | * distribute, distribute with modifications, sublicense, and/or sell * |
| 10 | * copies of the Software, and to permit persons to whom the Software is * |
| 11 | * furnished to do so, subject to the following conditions: * |
| 12 | * * |
| 13 | * The above copyright notice and this permission notice shall be included * |
| 14 | * in all copies or substantial portions of the Software. * |
| 15 | * * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * |
| 17 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * |
| 18 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * |
| 19 | * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * |
| 20 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * |
| 21 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * |
| 22 | * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * |
| 23 | * * |
| 24 | * Except as contained in this notice, the name(s) of the above copyright * |
| 25 | * holders shall not be used in advertising or otherwise to promote the * |
| 26 | * sale, use or other dealings in this Software without prior written * |
| 27 | * authorization. * |
| 28 | ****************************************************************************/ |
| 29 | |
| 30 | /**************************************************************************** |
| 31 | * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 * |
| 32 | * and: Eric S. Raymond <esr@snark.thyrsus.com> * |
| 33 | * and: Thomas E. Dickey 1996-on * |
| 34 | ****************************************************************************/ |
| 35 | |
| 36 | /* |
| 37 | * clear.c -- clears the terminal's screen |
| 38 | */ |
| 39 | |
| 40 | #define USE_LIBTINFO |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 41 | #include <clear_cmd.h> |
| 42 | #include <tty_settings.h> |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 43 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 44 | MODULE_ID("$Id: clear.c,v 1.24 2021/03/20 18:23:14 tom Exp $") |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 45 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 46 | const char *_nc_progname = "clear"; |
| 47 | |
| 48 | static GCC_NORETURN void |
| 49 | usage(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 50 | { |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 51 | #define KEEP(s) s "\n" |
| 52 | static const char msg[] = |
| 53 | { |
| 54 | KEEP("") |
| 55 | KEEP("Options:") |
| 56 | KEEP(" -T TERM use this instead of $TERM") |
| 57 | KEEP(" -V print curses-version") |
| 58 | KEEP(" -x do not try to clear scrollback") |
| 59 | }; |
| 60 | #undef KEEP |
| 61 | (void) fprintf(stderr, "Usage: %s [options]\n", _nc_progname); |
| 62 | fputs(msg, stderr); |
| 63 | ExitProgram(EXIT_FAILURE); |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | int |
| 67 | main( |
| 68 | int argc GCC_UNUSED, |
| 69 | char *argv[]GCC_UNUSED) |
| 70 | { |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 71 | TTY tty_settings; |
| 72 | int fd; |
| 73 | int c; |
| 74 | char *term; |
| 75 | bool opt_x = FALSE; /* clear scrollback if possible */ |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 76 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 77 | _nc_progname = _nc_rootname(argv[0]); |
| 78 | term = getenv("TERM"); |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 79 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 80 | while ((c = getopt(argc, argv, "T:Vx")) != -1) { |
| 81 | switch (c) { |
| 82 | case 'T': |
| 83 | use_env(FALSE); |
| 84 | use_tioctl(TRUE); |
| 85 | term = optarg; |
| 86 | break; |
| 87 | case 'V': |
| 88 | puts(curses_version()); |
| 89 | ExitProgram(EXIT_SUCCESS); |
| 90 | case 'x': /* do not try to clear scrollback */ |
| 91 | opt_x = TRUE; |
| 92 | break; |
| 93 | default: |
| 94 | usage(); |
| 95 | /* NOTREACHED */ |
| 96 | } |
| 97 | } |
| 98 | if (optind < argc) |
| 99 | usage(); |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 100 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 101 | fd = save_tty_settings(&tty_settings, FALSE); |
| 102 | |
| 103 | setupterm(term, fd, (int *) 0); |
| 104 | |
| 105 | ExitProgram((clear_cmd(opt_x) == ERR) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 106 | ? EXIT_FAILURE |
| 107 | : EXIT_SUCCESS); |
| 108 | } |