1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
/*********************************************************************
* Copyright 1993, 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
|