URI: 
       tutility.h - game-of-life - Conway's Game of Life
  HTML git clone git://src.adamsgaard.dk/game-of-life
   DIR Log
   DIR Files
   DIR Refs
   DIR LICENSE
       ---
       tutility.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