ref: c05751413d4747d97b42659222c336ddeccbbdfa dir: /lib/c/puts.c/
#include <stdio.h> int puts(const char *str) { int ch; while (ch = *str) putchar(ch); return putchar('\n'); }