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