#ifndef NETWORK_H #define NETWORK_H typedef struct network Network; struct network { Neuron *layers_first_neurons; //first neuron of each layer of the network Neuron *layers_last_neurons; //last neuron of each layer of the network int number_layers; //keeps track of layers' number }; #endif