fputs.c 197 B

12345678910
  1. #include "stdio_impl.h"
  2. #include <string.h>
  3. int fputs(const char *restrict s, FILE *restrict f)
  4. {
  5. size_t l = strlen(s);
  6. return (fwrite(s, 1, l, f)==l) - 1;
  7. }
  8. weak_alias(fputs, fputs_unlocked);