fof_iss.h
Go to the documentation of this file.
1 //
2 // $Id$
3 //
4 
5 /*.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- */
6 /* Individual Species Structure */
7 typedef struct {
8 #define eC_ISS_SPe 10
9  char cr_Spe [ eC_ISS_SPe + 1 ];
10  int i_Den; /* Density */
11  int i_DBH; /* Diam Breast Height */
12  int i_TreHgt; /* Tree Height */
13  int i_CroRat; /* Crown Ration */
14 } d_ISS;
15 
16 /*.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- */
17 void ISS_InitTbl (void);
18 void ISS_Init (d_ISS *a_ISS);
19 int ISS_Set (d_ISS *a_ISS);
20 void ISS_Display (void);
21 int ISS_Get (d_ISS *a_ISS, int iX);
22 int ISS_Count (void);
int ISS_Set(d_ISS *a_ISS)
#define eC_ISS_SPe
Definition: fof_iss.h:8
int i_TreHgt
Definition: fof_iss.h:12
int i_CroRat
Definition: fof_iss.h:13
void ISS_Display(void)
int ISS_Count(void)
void ISS_Init(d_ISS *a_ISS)
int ISS_Get(d_ISS *a_ISS, int iX)
int i_DBH
Definition: fof_iss.h:11
void ISS_InitTbl(void)
int i_Den
Definition: fof_iss.h:10
Definition: fof_iss.h:7