netcdf-c/libcdmr/crmeta.h
Dennis Heimbigner 7eccec950f Merge librpc
2011-09-01 22:32:28 +00:00

18 lines
456 B
C

#ifndef CRMETA_H
#define CRMETA_H 1
enum Dimcase {DC_UNKNOWN, DC_FIXED, DC_UNLIMITED, DC_VLEN, DC_PRIVATE};
typedef struct CRshape {size_t rank; Dimension** dims;} CRshape;
extern int nccr_buildnc(NCCR* nccr, Header* hdr);
extern enum Dimcase classifydim(struct Dimension* dim);
extern int dimsize(struct Dimension*);
extern nc_type cvtstreamtonc(DataType);
extern int crextractshape(CRnode* src, CRshape* dst);
#endif /*CRMETA_H*/