ref: 232f814cbdfd8ab842db3419844f1988cbf8d367 dir: /lib/c/src/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; }