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