mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-06 14:56:51 +08:00
a594d02131
moved the #define for the string macros to the h5tools.h from h5dump.h5
17 lines
218 B
C
17 lines
218 B
C
#ifndef _H5DUMP_H
|
|
#define _H5DUMP_H
|
|
|
|
#include <hdf5.h>
|
|
|
|
|
|
|
|
|
|
|
|
#define H5DUMP_MAX_RANK H5S_MAX_RANK
|
|
|
|
#define begin_obj(obj,name) printf("%s \"%s\" %s\n", obj, name, BEGIN)
|
|
#define end_obj() printf("%s\n", END);
|
|
|
|
|
|
#endif
|