Cloned library HDF5-1.14.1 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
256 B

2 years ago
#include "hdf5.h"
int
main()
{
herr_t retval;
unsigned majnum, minnum, relnum;
if ((retval = H5get_libversion(&majnum, &minnum, &relnum)) >= 0) {
printf("Hello, HDF5 %d.%d.%d!\n", majnum, minnum, relnum);
}
return retval;
}