shithub: scc

ref: 3a1fdd58d1df1f03f38e29a7f578cb22b2728efc
dir: /lib/c/puts.c/

View raw version

#include <stdio.h>

int
puts(const char *str)
{
	int ch;

	while (ch = *str)
		putchar(ch);
	return putchar('\n');
}