]> git.friedersdorff.com Git - max/gol.git/blob - tick.h
First working implementation
[max/gol.git] / tick.h
1 #ifndef TICK_H
2 #define TICK_H
3
4 #include "array.h"
5
6 /*
7  * Calculates the state of a game of life after the next tick, based
8  * on the passed state.  It modifies the passed state.
9  */
10 int gol_tick(struct gol_board *state);
11
12 #endif