ref: 5a13b1a8c6e3232be716f6cfeb7dec710f947f14 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; }