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/proficiencies/decoder/decoder.c
T
2026-02-23 01:15:30 +01:00

15 lines
212 B
C

#include <stdio.h>
char decode_block(int block){
//euh ok
return 0;
}
int print_decoded_file(const char *filename){
FILE *file = fopen(filename, "r");
if(!file) return 1;
return 0;
}