blob: e53b9009416685804ab65e680c9a108c7a66ccce (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef GOL_H
#define GOL_H
void gol_play (int iterations, uint16_t delay);
unsigned char gol_count_neighbors (int x, int y, int z);
void gol_nextgen (void);
int gol_count_changes (void);
#endif
|