utility.h (242B)
1 #ifndef UTILITY_H_ 2 #define UTILITY_H_ 3 4 int allocate_matrix(int ***M, int nx, int ny); 5 void free_matrix(int ***M, int nx); 6 void print_matrix(char* description, int **M, int nx, int ny); 7 void print_cell_matrix(int **M, int nx, int ny); 8 9 #endif