new user settable buffer size and explanation about SHELL.
[unix-history] / usr / src / usr.bin / window / wwclreos.c
CommitLineData
5b020a1b 1#ifndef lint
14f251df 2static char *sccsid = "@(#)wwclreos.c 3.2 83/08/11";
5b020a1b
EW
3#endif
4
5#include "ww.h"
6
14f251df 7wwclreos(w, line, col)
5b020a1b
EW
8register struct ww *w;
9{
14f251df
EW
10 register i;
11
12 wwclreol(w, line, col);
13 for (i = line + 1; i < w->ww_nline; i++)
14 wwclreol(w, i, 0);
5b020a1b 15}