#include <xtend/dsv.h>
-lxtend
int dsv_line_set_fields_cpy(dsv_line_t *dsv_line_ptr, char ** new_fields, size_t array_size)
dsv_line_ptr Pointer to the structure to set
new_fields The new value for fields
array_size Size of the fields array.
Mutator for fields member in a dsv_line_t structure. Use this function to set
fields in a dsv_line_t object from non-member functions. This function copies
the array pointed to by new_fields to dsv_line_ptr->fields.
BL_DSV_DATA_OK if the new value is acceptable and assigned
BL_DSV_DATA_OUT_OF_RANGE otherwise
dsv_line_t dsv_line;
char ** new_fields;
size_t array_size;
if ( dsv_line_set_fields_cpy(&dsv_line, new_fields, array_size)
== BL_DSV_DATA_OK )
{
}