main
1#include <stdbool.h>
2
3typedef struct {
4 bool alive;
5 //int index;
6} Cell;
7
8Cell* cell_create(int number_of_cells);
9int cell_alive(Cell *cell);
10void cell_change_life(Cell *cell, bool alive);
11void cell_print(Cell *cell);