mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
20 lines
532 B
C
20 lines
532 B
C
/*********************************************************************
|
|
|
|
|
|
* Copyright 2010, UCAR/Unidata
|
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
|
* $Id$
|
|
* $Header$
|
|
*********************************************************************/
|
|
|
|
#ifndef NCCRCVT_H
|
|
#define NCCRCVT_H
|
|
|
|
extern int nccrtypelen(nc_type);
|
|
|
|
extern int nccrconvert(nc_type srctype, nc_type dsttype,
|
|
void* value0, void* memory0,
|
|
size_t count, int byteswap);
|
|
|
|
#endif /*NCCRCVT_H*/
|