Files
RedBear-OS/tests/stdio/fputs.c
T
2019-02-20 19:27:18 +01:00

12 lines
266 B
C

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
int main(void) {
FILE *f = fopen("stdio/fputs.out", "w");
char *in = "Hello World!";
fputs(in, f); // calls fwrite, helpers::fwritex, internal::to_write and internal::stdio_write
fclose(f);
return 0;
}