BSD 4_3 release
[unix-history] / usr / src / ucb / window / wwputs.c
CommitLineData
ff1ae98e 1#ifndef lint
95f51977 2static char sccsid[] = "@(#)wwputs.c 3.4 4/24/85";
ff1ae98e
EW
3#endif
4
60de5df9
EW
5/*
6 * Copyright (c) 1983 Regents of the University of California,
7 * All rights reserved. Redistribution permitted subject to
8 * the terms of the Berkeley Software License Agreement.
9 */
10
ff1ae98e
EW
11#include "ww.h"
12
13wwputs(s, w)
4711df8b
EW
14register char *s;
15struct ww *w;
ff1ae98e 16{
4711df8b
EW
17 register char *p = s;
18
19 while (*p++)
20 ;
b1189050 21 (void) wwwrite(w, s, p - s - 1);
ff1ae98e 22}