xref: /csrg-svn/old/lib2648/outstr.c (revision 18778)
111486Sralph /*
2*18778Sdist  * Copyright (c) 1980 Regents of the University of California.
3*18778Sdist  * All rights reserved.  The Berkeley software License Agreement
4*18778Sdist  * specifies the terms and conditions for redistribution.
5*18778Sdist  */
6*18778Sdist 
7*18778Sdist #ifndef lint
8*18778Sdist static char sccsid[] = "@(#)outstr.c	5.1 (Berkeley) 04/26/85";
9*18778Sdist #endif not lint
10*18778Sdist 
11*18778Sdist /*
1211486Sralph  * Low level output routines
1311486Sralph  */
1411486Sralph 
1511486Sralph #include "2648.h"
1611486Sralph 
outstr(str)1711486Sralph outstr(str)
1811486Sralph char *str;
1911486Sralph {
2011486Sralph 	while (*str)
2111486Sralph 		outchar(*str++);
2211486Sralph }
23