mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-11 16:40:36 +08:00
18 lines
462 B
C
18 lines
462 B
C
#ifndef NCCRMETA_H
|
|
#define NCCRMETA_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 /*NCCRMETA_H*/
|