/*Headers for the procedures to update the metabolites in the environment 
  every time step.*/



int num_metabolites(int popsize, int total);
int get_metabolite_update(int timestep, int met_type);
void get_env_update(int timestep, Gut *env_input);
void update_environment(Gut *env_input, Gut *the_env, int popsize);
