mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
416a86e3ce
Code Movement Description: Moved tools code into their own special subdirectories. Platforms tested: Linux, Kelgia
23 lines
668 B
C
23 lines
668 B
C
/*
|
|
* Copyright (C) 1998-2001 National Center for Supercomputing Applications
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
#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__ */
|