diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2000-11-02 04:59:51 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2000-11-02 04:59:51 (GMT) |
commit | 48b4b454816677b3b79d03bb4d4dc7b1eef90e30 (patch) | |
tree | 5335b3f7ab3b8c2d8beb914cc4cd7030c6065696 /tools/h5tools.h | |
parent | 180a47a037320fc8fcf48cf3114e1f548d019659 (diff) | |
download | hdf5-48b4b454816677b3b79d03bb4d4dc7b1eef90e30.zip hdf5-48b4b454816677b3b79d03bb4d4dc7b1eef90e30.tar.gz hdf5-48b4b454816677b3b79d03bb4d4dc7b1eef90e30.tar.bz2 |
[svn-r2790] Purpose:
new feature
Description:
h5tools.c:
Created h5tools_init() and h5tools_close() for the initialization
of the h5tools library and closing of it. With this, the rawdatastream
and other internal structures can be initialized properly.
h5tools.h:
added prototypes for h5tools_init and h5tools_close.
h5dump.c:
h5ls.c:
Added the calls for h5tools_init() and h5tools_close().
Platforms tested:
IRIX64 -64 parallel and Linux
Diffstat (limited to 'tools/h5tools.h')
-rw-r--r-- | tools/h5tools.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/h5tools.h b/tools/h5tools.h index ffd7221..c34547b 100644 --- a/tools/h5tools.h +++ b/tools/h5tools.h @@ -436,4 +436,6 @@ extern FILE *rawdatastream; /* output stream for raw data */ /* Definitions of useful routines */ void print_version(const char *program_name); +void h5tools_init(void); +void h5tools_close(void); |