mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
22 lines
535 B
C
22 lines
535 B
C
/* Copyright 2009, UCAR/Unidata and OPeNDAP, Inc.
|
|
See the COPYRIGHT file for more information. */
|
|
|
|
#ifndef OCDUMP_H
|
|
#define OCDUMP_H
|
|
|
|
extern void ocdumpnode(OCnode* node);
|
|
|
|
extern void ocdumpslice(OCslice* slice);
|
|
extern void ocdumpclause(OCprojectionclause* ref);
|
|
|
|
extern void ocdumpmemory(char* memory, int len);
|
|
extern void ocdumppacket(char* memory, int len, int bod);
|
|
|
|
extern void ocdumpfile(FILE* file, int datastart);
|
|
|
|
extern void ocdumpmemdata(OCmemdata*,OCbytes*);
|
|
|
|
extern void ocdd(OCstate*,OCnode*);
|
|
|
|
#endif /*OCDUMP_H*/
|