IN101 project on Conway's Game of Life
naive_loader.h
Go to the documentation of this file.
1 
20 #include <stdio.h>
21 #include <stdlib.h>
22 
23 #include "naive_universe.h"
24 
25 #ifndef CONWAY_NAIVE_LOADER
26 #define CONWAY_NAIVE_LOADER
27 
35 universe naive_conway_load(char *data_filename);
36 
37 #endif
Header file for a naive implementation of Conway&#39;s game of life universe structure.
universe naive_conway_load(char *data_filename)
Parse a text file into a universe structure.
Definition: naive_loader.c:10
Structure representing a universe: width, height, number of simulation steps and current cells state...
Definition: list_universe.h:18