langage_C/examen/T1/StatistiqueFichier.h
2023-04-05 13:24:47 +02:00

10 lines
259 B
C

typedef struct ASCII_table
{
int ASCII[256];
} ASCII_table;
ASCII_table init_table();
ASCII_table *StatistiqueFichier(char *nomFichier, ASCII_table *table);
void print_ASCII_table(ASCII_table *table);
void print_StatistiqueResultats(ASCII_table *table);