#include <xtend/dsv.h>
-lxtend
DSV_LINE_DELIMS_AE(ptr, c)
ptr Pointer to a dsv_line_t structure
c Subscript to the delims array
Accessor macro for delims array elements. Use this macro to reference an element
of delims in a dsv_line_t structure from functions that are not members of the
class. This allows separation of implementation from interface. While the
implementation of the dsv_line_t structure may change, effort is made to
preserve the API of functions and macros used to access it.
dsv_line_t dsv_line;
size_t c;
char * element;
element = DSV_LINE_DELIMS_AE(&dsv_line,c);
See xtend/dsv.h for a full list of macros.