This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-02-23 01:15:30 +01:00

10 lines
147 B
C

#include <stdio.h>
int parser(char *filename){
FILE *file = fopen(filename, "r");
if (!file) return 1;
fclose(file);
return 0;
}