Files
RedBear-OS/tests/stdio/all.c
T

14 lines
277 B
C

#include <stdio.h>
#include <stdlib.h>
int main(void) {
FILE *f = fopen("stdio/stdio.in", "r");
printf("%c\n", fgetc(f));
ungetc('H', f);
char *in = malloc(30);
printf("%s\n", fgets(in, 30, f));
setvbuf(stdout, 0, _IONBF, 0);
printf("Hello\n");
return EXIT_SUCCESS;
}