13 #ifndef CONWAY_LIST_UNIVERSE    14 #define CONWAY_LIST_UNIVERSE void print_list_cells(universe u)
Print a universe's cells to the console. 
Definition: list_universe.c:28
 
Structure representing a universe: width, height, number of simulation steps and current cells state...
Definition: list_universe.h:18
 
bool list_universe_get_cell(universe u, int row, int column)
Get a cell's state from a universe. 
Definition: list_universe.c:10
 
void print_list_universe(universe u)
Print a universe to the console. 
Definition: list_universe.c:76
 
void prettyprint_list_universe(universe u)
Pretty-prints a universe to the console. 
Definition: list_universe.c:82
 
Header file for a linked list implementation. 
 
Definition: linked_list_cell.h:18