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