Mini-Unix/usr/source/iolib/puts.c

Compare this file to the similar file:
Show the results in this format:

puts(str)
char *str;
{
auto char *p,c;
auto int f;
extern int cout;
if (nargs() != 1)
   IEHzap("puts  ");
p = str;
while( (c = *p++)!= '\0') cputc(c,cout);
cputc('\n',cout);
return(str);
}