You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
544 B
19 lines
544 B
2 years ago
|
/*********************************************************************
|
||
|
* Copyright 2018, UCAR/Unidata
|
||
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
||
|
* $Header: /upc/share/CVS/netcdf-3/ncgen3/generic.h,v 1.3 1997/04/07 17:23:12 russ Exp $
|
||
|
*********************************************************************/
|
||
|
|
||
|
#ifndef UD_GENERIC_H
|
||
|
#define UD_GENERIC_H
|
||
|
|
||
|
union generic { /* used to hold any kind of fill_value */
|
||
|
float floatv;
|
||
|
double doublev;
|
||
|
int intv;
|
||
|
short shortv;
|
||
|
char charv;
|
||
|
};
|
||
|
|
||
|
#endif
|