summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/fputs.c
blob: 2ba0d4d11260f2b77df9d2b8317f72f45c5ee617 (plain)
1
2
3
4
5
6
7
#include <stdio.h>  // for fwrite, EOF, FILE, fputs
#include <string.h> // for strlen

int fputs(const char *restrict s, FILE *restrict stream)
{
	return fwrite(s, 1, strlen(s), stream) == strlen(s) ? 0 : EOF;
}