void free_char_tab(char **mat)
release memory for a matrix of chars
Definition: useful_functions.c:217
char ** get_char_tab(int nb_r, int nb_c)
create (with memory allocation) a [nb_r times nb_c] matrix of chars WARNING: only the first dimension...
Definition: useful_functions.c:170