10 lines
259 B
C
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);
|