Former-commit-id:9f19e3f712
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]] Former-commit-id:06a8b51d6d
Former-commit-id:3360eb6c5f
36 lines
995 B
C
36 lines
995 B
C
/****************************************************************/
|
|
/* */
|
|
/* FILE: Mods_unitsStruct.h */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* Coded by: Tom Adams (TEA) */
|
|
/* NWS * Office of Hydrology * HRL */
|
|
/* Date: 11/21/94 */
|
|
/* Modified: */
|
|
/* */
|
|
/****************************************************************/
|
|
|
|
#ifndef Mods_unitsStruct_h
|
|
#define Mods_unitsStruct_h
|
|
|
|
int SAC_Units; /* If 0: ENGLISH, 1: METRIC */
|
|
int API_Units; /* If 0: ENGLISH, 1: METRIC */
|
|
int General_Units; /* If 0: ENGLISH, 1: METRIC */
|
|
int NWSRFS_Units; /* If 0: ENGLISH, 1: METRIC */
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------*/
|
|
/* Structure to hold Flags for */
|
|
/*--------------------------------------------------------------*/
|
|
typedef struct
|
|
{
|
|
int General_Units;
|
|
int NWSRFS_Units;
|
|
int API_Units;
|
|
int SAC_Units;
|
|
} unitsStruct_t, *unitsStruct_p;
|
|
|
|
#endif
|
|
|