#ifndef TICK_H #define TICK_H #include "array.h" /* * Calculates the state of a game of life after the next tick, based * on the passed state. It modifies the passed state. */ int gol_tick(struct gol_board *state); #endif