game-of-life

Conway's Game of Life
git clone git://src.adamsgaard.dk/game-of-life # fast
git clone https://src.adamsgaard.dk/game-of-life.git # slow
Log | Files | Refs | README | LICENSE Back to index

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