mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-03 02:32:04 +08:00
9bde1f17f8
Reformat the source Description: The tabstop seems to defined different from 8-stops. The source files looked very confusing. Just reformate the files. Not change to source code at all. Platforms tested: modi4 -64.
18 lines
354 B
C
18 lines
354 B
C
#ifndef H5DUMP_H__
|
|
#define H5DUMP_H__
|
|
|
|
#include <hdf5.h>
|
|
|
|
#define H5DUMP_MAX_RANK H5S_MAX_RANK
|
|
|
|
#define begin_obj(obj,name,begin) \
|
|
if (name) \
|
|
printf("%s \"%s\" %s\n", (obj), (name), (begin)); \
|
|
else \
|
|
printf("%s %s\n", (obj), (begin));
|
|
|
|
#define end_obj(obj,end) \
|
|
printf("%s %s\n", (end), (obj));
|
|
|
|
#endif /* H5DUMP_H__ */
|