synopsis: #include ”SDDS.h”
SDDS_ARRAY *SDDS_GetArray(SDDS_TABLE *SDDS_table, char *array_name, SDDS_ARRAY
*memory);
typedef struct {
/* pointer to the internally-stored structure: */
ARRAY_DEFINITION *definition;
int32_t *dimension; /* sizes for each dimension */
int32_t elements; /* total number of elements */
/* Address of new copy of array of data values, stored contiguously: */
void *data;
/* Address of n-dimensional pointer array into the new copy of data: */
void *pointer;
} SDDS_ARRAY;