]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/lib_clear.c
ncurses 4.1
[ncurses.git] / ncurses / lib_clear.c
1
2 /***************************************************************************
3 *                            COPYRIGHT NOTICE                              *
4 ****************************************************************************
5 *                ncurses is copyright (C) 1992-1995                        *
6 *                          Zeyd M. Ben-Halim                               *
7 *                          zmbenhal@netcom.com                             *
8 *                          Eric S. Raymond                                 *
9 *                          esr@snark.thyrsus.com                           *
10 *                                                                          *
11 *        Permission is hereby granted to reproduce and distribute ncurses  *
12 *        by any means and for any fee, whether alone or as part of a       *
13 *        larger distribution, in source or in binary form, PROVIDED        *
14 *        this notice is included with any such distribution, and is not    *
15 *        removed from any of its header files. Mention of ncurses in any   *
16 *        applications linked with it is highly appreciated.                *
17 *                                                                          *
18 *        ncurses comes AS IS with no warranty, implied or expressed.       *
19 *                                                                          *
20 ***************************************************************************/
21
22 /*
23 **      lib_clear.c
24 **
25 **      The routine wclear().
26 **
27 */
28
29 #include <curses.priv.h>
30
31 MODULE_ID("$Id: lib_clear.c,v 1.3 1997/02/01 23:18:18 tom Exp $")
32
33 int wclear(WINDOW *win)
34 {
35         T((T_CALLED("wclear(%p)"), win));
36
37         werase(win);
38
39         win->_clear = TRUE;
40
41         returnCode(OK);
42 }