home *** CD-ROM | disk | FTP | other *** search
- #include "defines.h"
- #include <stdio.h>
- #include <math.h>
- #if PC
- #include <alloc.h>
- #include <conio.h>
- #endif
- #include <string.h>
- #include <stdlib.h>
- #include "pcwins.h"
-
- extern FILE
- #if PC
- *tmpfp, /* temp file for holding output, to dump
- to printer if user desires */
- #endif
- *fpout; /* output filepointer */
-
- extern double
- CycleTime, /* days per cycle of stages */
- OldCycleTime, /* previous value, needed when changing */
- DefaultCycleTime, /* default cycletime */
- EpiTime, /* days in epididymis transit time */
- *stage; /* array of stage lengths: */
-
- extern char
- tab4[5], /* 4 spaces */
- tab[9], /* 8 spaces */
- tab2[17], /* 16 spaces */
- #if PC
- TMPFIL[FILELEN], /* tmp output file name */
- #endif
- *Animal, /* name of current animal */
- **CellNames, /* array of cell names */
- ***MultiCellNames; /* array of cell names for stages with
- >1 cell in it */
- extern int
- NumCellSeq, /* number of cells in the cell sequence */
- MaxCellIndex, /* largest cell index */
- NumStages, /* number of stages in cycle */
- MaxStage, /* largest numbered stage - 1 */
- NumMultiCells, /* # of stages w/multicells, depends on
- the animal selected */
- CycleStart, /* spermatogenesis start cell index # */
- interactive, /* =0 if inputfile, =1 if interactive */
- NewCycleTime, /* =1 if new CycleTime entered, =0 else */
- AnimalNum, /* code # of current animal */
- #if PC
- HARDCOPY, /* =1 if PC user wants hardcopy */
- introprint, /* =1 if intro sent to printer once */
- #endif
- FILEq, /* if output file specified */
- FILECOPY; /* =1 if user wants o/p to go to file */