xref: /csrg-svn/old/lib2648/outstr.c (revision 11486)
1*11486Sralph /*	outstr.c	4.1	83/03/09	*/
2*11486Sralph /*
3*11486Sralph  * Low level output routines
4*11486Sralph  */
5*11486Sralph 
6*11486Sralph #include "2648.h"
7*11486Sralph 
8*11486Sralph outstr(str)
9*11486Sralph char *str;
10*11486Sralph {
11*11486Sralph 	while (*str)
12*11486Sralph 		outchar(*str++);
13*11486Sralph }
14