IODA
test-Engines-open.c
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /** \file test-Engines.c
8  * \brief C binding tests for ioda-engines engines.
9  *
10  * \author Ryan Honeyager (honeyage@ucar.edu)
11  **/
12 
13 #include <stdio.h>
14 #include <string.h>
15 
16 #include "ioda/C/Engines_c.h"
17 #include "ioda/C/Group_c.h"
18 #include "ioda/defs.h" // Always include this first.
19 
20 int main() {
21  int errval = 0;
22  struct ioda_group* g4 = NULL;
23 
25  if (!g4) goto hadError;
26 
27  goto cleanup;
28 
29 hadError:
30  printf("An error was encountered.\n");
31  errval = 1;
32 
33 cleanup:
35 
36  return errval;
37 }
C bindings for ioda::Engines
C bindings for ioda::Group
Common preprocessor definitions used throughout IODA.
IODA_DL struct ioda_group * ioda_Engines_HH_openFile(size_t sz_filename, const char *filename, enum ioda_Engines_BackendOpenModes mode)
Open a handle to a file that is backed by HDF5.
Definition: Engines_c.cpp:47
@ ioda_Engines_BackendOpenModes_Read_Only
Open in read-only mode.
Definition: Engines_c.h:29
IODA_DL void ioda_group_destruct(struct ioda_group *grp)
Frees a ioda_group.
Definition: Group_c.cpp:22
int main()