#ifndef lint static char sccsid[] = "@(#)wwputs.c 3.4 4/24/85"; #endif /* * Copyright (c) 1983 Regents of the University of California, * All rights reserved. Redistribution permitted subject to * the terms of the Berkeley Software License Agreement. */ #include "ww.h" wwputs(s, w) register char *s; struct ww *w; { register char *p = s; while (*p++) ; (void) wwwrite(w, s, p - s - 1); }