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
257 B
14 lines
257 B
2 years ago
|
#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;
|
||
|
}
|