Read an entire variable.
More...
Read an entire variable.
This is documentation for a series of functions in C that attempt to emulate C++ templates using macro magic. The template parameter SUFFIX is written into the function name. Ex:, to read an integer variable, call ioda_variable_read_full_int
. To read a float variable, try ioda_variable_read_full_float
.
- Template Parameters
-
SUFFIX | is the type (int, long, int64_t) that is appended to this function name in the C interface. |
- Parameters
-
[in] | var | is the variable. |
| sz | is the size of the output buffer vals. Must match the number of elements in var. |
[out] | vals | is the output buffer. |
- Returns
- true on success, false on failure.
- Precondition
- sz must match the current number of elements in the variable.
-
var and vals must be valid.
◆ IODA_VARIABLE_READ_FULL_TEMPLATE
#define IODA_VARIABLE_READ_FULL_TEMPLATE |
( |
|
funcnamestr, |
|
|
|
Type |
|
) |
| IODA_DL bool funcnamestr(const struct ioda_variable* var, size_t sz, Type* vals); |
◆ C_TEMPLATE_FUNCTION_DEFINITION_NOSTR()
◆ ioda_variable_read_full_str()
Read strings from a variable.
- Parameters
-
- Returns
- a sequence of strings. These should be freed by the caller.
-
NULL on failure.
- Precondition
- var must be valid.
-
var must contain strings. Other types cannot be transparently converted.