Startup configuration stuff, and misc.
[unix-history] / usr / src / usr.bin / window / wwputs.c
CommitLineData
ff1ae98e 1#ifndef lint
b4be6cd6 2static char *sccsid = "@(#)wwputs.c 1.4 83/07/19";
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 ;
15 wwwrite(w, s, p - s - 1);
ff1ae98e 16}