#include #include int fputs(const char *str, FILE *stream){ return fwrite(str, sizeof(char), strlen(str), stream); }