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