ww_availmodes and stuff
[unix-history] / usr / src / usr.bin / window / wwputs.c
CommitLineData
ff1ae98e 1#ifndef lint
30647f51 2static char *sccsid = "@(#)wwputs.c 3.1 83/08/11";
ff1ae98e
EW
3#endif
4
5#include "ww.h"
6
7wwputs(s, w)
4711df8b
EW
8register char *s;
9struct ww *w;
ff1ae98e 10{
4711df8b
EW
11 register char *p = s;
12
13 while (*p++)
14 ;
bb05dfb5 15 return wwwrite(w, s, p - s - 1);
ff1ae98e 16}