diff options
Diffstat (limited to 'doxygen/examples/H5Fcreate.c')
-rw-r--r-- | doxygen/examples/H5Fcreate.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doxygen/examples/H5Fcreate.c b/doxygen/examples/H5Fcreate.c new file mode 100644 index 0000000..6bb1d9f --- /dev/null +++ b/doxygen/examples/H5Fcreate.c @@ -0,0 +1,12 @@ +#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; +} |