mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-15 20:05:13 +02:00
10 lines
193 B
C
10 lines
193 B
C
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
void clean_usage() {
|
||
|
|
FILE *f = fopen("data.txt", "r");
|
||
|
|
char buf[256];
|
||
|
|
fread(buf, 1, sizeof(buf), f);
|
||
|
|
fclose(f);
|
||
|
|
// Clean: open, use, close — no bugs
|
||
|
|
}
|