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
prog-103-p-05-2030/Who_robbed_Thibouvre/fundamentals/parser/parser.c
T
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;
}