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.
|
#include "hdf5.h"
|
|
|
|
int
|
|
main()
|
|
{
|
|
hid_t file;
|
|
if ((file = H5Fcreate("foo.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT)) < 0)
|
|
return -1;
|
|
/* Do something good with this file. */
|
|
if (H5Fclose(file) < 0)
|
|
return -2;
|
|
return 0;
|
|
}
|
|
|