IN101 project on Conway's Game of Life
list_loader.h
Go to the documentation of this file.
1 
8 #include <stdio.h>
9 #include <stdlib.h>
10 
11 #include "linked_list_cell.h"
12 #include "list_universe.h"
13 
14 #ifndef CONWAY_LIST_LOADER
15 #define CONWAY_LIST_LOADER
16 
24 universe list_conway_load(char *filename);
25 
26 #endif
Structure representing a universe: width, height, number of simulation steps and current cells state...
Definition: list_universe.h:18
Header file for a linked list implementation of Conway&#39;s game of life universe structure.
universe list_conway_load(char *filename)
Parse a text file into a universe structure.
Definition: list_loader.c:10
Header file for a linked list implementation.