ref: 1ec4d62ccec0872d1ecc64f6834e5ea8d36f7a1f dir: /lib/c/fputs.c/
#include <stdio.h> int fputs(const char * restrict bp, FILE * restrict fp) { int r, ch; while (ch = *bp++) r = putc(ch, fp); return r; }