2010-06-03 21:24:43 +08:00
|
|
|
/* 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);
|
|
|
|
|
2011-03-29 02:35:48 +08:00
|
|
|
extern void ocdumpmemory(char* memory, int len, int bod);
|
2010-06-03 21:24:43 +08:00
|
|
|
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*/
|