diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-02-16 20:20:40 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-02-16 20:20:40 (GMT) |
commit | 489f234316bee9ad6dcad44aa82e8bb38fd7f807 (patch) | |
tree | 3ccbe2815a1027a7737e59406778d9595f3a2970 /tools/h5diff/h5diff_common.h | |
parent | 8ed95c00114dd3f6d9b766664c3bb56aa75f7a4f (diff) | |
download | hdf5-489f234316bee9ad6dcad44aa82e8bb38fd7f807.zip hdf5-489f234316bee9ad6dcad44aa82e8bb38fd7f807.tar.gz hdf5-489f234316bee9ad6dcad44aa82e8bb38fd7f807.tar.bz2 |
[svn-r10017] Purpose:
bug fix/new feature.
Description:
(committing changes made by Leon.)
ph5diff now is a real program by itself. It has its
own main (ph5diff_main.c).
Codes common to h5diff and ph5diff are in h5diff_common.c.
Removed the hack that hide failures from testh5diff.sh.
Platforms tested:
heping(serial, pp), sol (pp), copper(pp).
Misc. update:
Diffstat (limited to 'tools/h5diff/h5diff_common.h')
-rw-r--r-- | tools/h5diff/h5diff_common.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/h5diff/h5diff_common.h b/tools/h5diff/h5diff_common.h new file mode 100644 index 0000000..3a6f01d --- /dev/null +++ b/tools/h5diff/h5diff_common.h @@ -0,0 +1,7 @@ +void usage(void); +int check_n_input( const char* ); +int check_f_input( const char* ); +void parse_input(int argc, const char* argv[], const char** fname1, const char** fname2, const char** objname1, const char** objname2, diff_opt_t* options); +void h5diff_exit(int status); +void print_results(hsize_t nfound, diff_opt_t* options); + |