ras le bol

This commit is contained in:
2026-02-23 01:15:30 +01:00
parent fba51abae3
commit 28dee070b3
38 changed files with 442 additions and 321 deletions
@@ -0,0 +1,9 @@
#include <stdio.h>
int parser(char *filename){
FILE *file = fopen(filename, "r");
if (!file) return 1;
fclose(file);
return 0;
}