mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
489f234316
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:
8 lines
331 B
C
8 lines
331 B
C
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);
|
|
|