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