break out special local mail processing (e.g., mapping to the
[unix-history] / usr / src / usr.bin / window / wwclreos.c
CommitLineData
60de5df9 1/*
00747047
KB
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
46e9ea25 4 *
3dd3a9e5
KB
5 * This code is derived from software contributed to Berkeley by
6 * Edward Wang at The University of California, Berkeley.
7 *
87f529ec 8 * %sccs.include.redist.c%
60de5df9
EW
9 */
10
46e9ea25 11#ifndef lint
00747047 12static char sccsid[] = "@(#)wwclreos.c 8.1 (Berkeley) %G%";
46e9ea25
KB
13#endif /* not lint */
14
5b020a1b 15#include "ww.h"
df7b254b 16#include "tt.h"
5b020a1b 17
f2a77fe1 18wwclreos(w, row, col)
5b020a1b
EW
19register struct ww *w;
20{
14f251df
EW
21 register i;
22
6a1ef78a 23 wwclreol(w, row, col);
f2a77fe1 24 for (i = row + 1; i < w->ww_b.b; i++)
6a1ef78a
EW
25 wwclreol(w, i, w->ww_b.l);
26 /* XXX */
27 if (!w->ww_noupdate)
28 wwupdate1(w->ww_i.t, w->ww_i.b);
5b020a1b 29}