mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
12 lines
207 B
C
12 lines
207 B
C
#include <stdio.h>
|
|||
|
|||
void loop_reopen(void) {
|
|||
int i;
|
|||
for (i = 0; i < 3; i++) {
|
|||
FILE *f = fopen("data.txt", "r");
|
|||
char buf[64];
|
|||
fread(buf, 1, 64, f);
|
|||
fclose(f);
|
|||
}
|
|||
}
|