]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/base/lib_erase.c
ncurses 6.2 - patch 20200523
[ncurses.git] / ncurses / base / lib_erase.c
index 2566e8b39820a260c0ff0f271d3d0189e0f14a0a..e190ebd549ac799fb2d0a1baaa68ff6fec8575d0 100644 (file)
@@ -1,5 +1,6 @@
 /****************************************************************************
 /****************************************************************************
- * Copyright (c) 1998,2000,2001 Free Software Foundation, Inc.              *
+ * Copyright 2020 Thomas E. Dickey                                          *
+ * Copyright 1998-2009,2016 Free Software Foundation, Inc.                  *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
 
 #include <curses.priv.h>
 
 
 #include <curses.priv.h>
 
-MODULE_ID("$Id: lib_erase.c,v 1.16 2005/10/30 00:36:36 tom Exp $")
+MODULE_ID("$Id: lib_erase.c,v 1.19 2020/02/02 23:34:34 tom Exp $")
 
 NCURSES_EXPORT(int)
 werase(WINDOW *win)
 {
     int code = ERR;
 
 NCURSES_EXPORT(int)
 werase(WINDOW *win)
 {
     int code = ERR;
-    int y;
     NCURSES_CH_T blank;
     NCURSES_CH_T blank;
-    NCURSES_CH_T *sp, *end, *start;
+    NCURSES_CH_T *start;
 
 
-    T((T_CALLED("werase(%p)"), win));
+    T((T_CALLED("werase(%p)"), (void *) win));
 
     if (win) {
 
     if (win) {
+       NCURSES_CH_T *sp;
+       int y;
+
        blank = win->_nc_bkgd;
        for (y = 0; y <= win->_maxy; y++) {
        blank = win->_nc_bkgd;
        for (y = 0; y <= win->_maxy; y++) {
+           NCURSES_CH_T *end;
+
            start = win->_line[y].text;
            end = &start[win->_maxx];
 
            start = win->_line[y].text;
            end = &start[win->_maxx];