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