summaryrefslogtreecommitdiffstats
path: root/hl/examples/ex_lite1.c
diff options
context:
space:
mode:
Diffstat (limited to 'hl/examples/ex_lite1.c')
-rw-r--r--hl/examples/ex_lite1.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/hl/examples/ex_lite1.c b/hl/examples/ex_lite1.c
new file mode 100644
index 0000000..85a011d
--- /dev/null
+++ b/hl/examples/ex_lite1.c
@@ -0,0 +1,35 @@
+
+/****************************************************************************
+ * NCSA HDF *
+ * Scientific Data Technologies *
+ * National Center for Supercomputing Applications *
+ * University of Illinois at Urbana-Champaign *
+ * 605 E. Springfield, Champaign IL 61820 *
+ * *
+ * For conditions of distribution and use, see the accompanying *
+ * hdf/COPYING f. *
+ * *
+ ****************************************************************************/
+
+#include "H5LT.h"
+
+#define RANK 2
+
+
+int main( void )
+{
+ hid_t file_id;
+ hsize_t dims[RANK]={2,3};
+ int data[6]={1,2,3,4,5,6};
+ herr_t status;
+
+ file_id = H5Fcreate ("ex_lite1.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
+
+ status = H5LTmake_dataset(file_id,"/dset",RANK,dims,H5T_NATIVE_INT,data);
+
+ status = H5Fclose (file_id);
+
+ return 0;
+}
+
+