summaryrefslogtreecommitdiffstats
path: root/tools/h5dump.h
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-02-22 22:01:58 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-02-22 22:01:58 (GMT)
commit627a039fdbd3c6d782606f68ecee8e5262808699 (patch)
tree2d9ed5b0494c6a0730e7e7658d44b355b6f7edf2 /tools/h5dump.h
parent55998df9edbfacb0e2b0a1907e66fa819fcec09f (diff)
downloadhdf5-627a039fdbd3c6d782606f68ecee8e5262808699.zip
hdf5-627a039fdbd3c6d782606f68ecee8e5262808699.tar.gz
hdf5-627a039fdbd3c6d782606f68ecee8e5262808699.tar.bz2
[svn-r3492] Purpose:
Code Movement Description: Moved these files to subdirectories in the tools/ directory. Platforms tested: Linux, Kelgia
Diffstat (limited to 'tools/h5dump.h')
-rw-r--r--tools/h5dump.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/h5dump.h b/tools/h5dump.h
deleted file mode 100644
index 6e4c54f..0000000
--- a/tools/h5dump.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#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__ */