shithub: scc

ref: aa911418f7dfb7fa7f5026d8cd3f52b03e86fc7e
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');
}