/* itercnt.h */ EXTERN struct t_IterCnt { /* these are the variables that control how many iterations are * to be done, and number of the current iteration * iter is current iteration - 1 for first iteration * itermx is number of iterations to perform, set with iterate command * upper limit is parameter variable ItrDim */ long int iter, itermx; /*number of zones to print on each iteration*/ long int IterPrnt[ITRDIM]; /* this is false on any but the last iteration * set true in startr if iter > itermx */ int lgLastIt; } IterCnt;