![]() |
![]()
| ![]() |
![]()
LIBRARY#include <xtend/dsv.h> -lxtend SYNOPSISint xt_dsv_line_set_delims_cpy(xt_dsv_line_t *xt_dsv_line_ptr, char * new_delims, size_t array_size) ARGUMENTSxt_dsv_line_ptr Pointer to the structure to set new_delims The new value for delims array_size Size of the delims array. DESCRIPTIONMutator for delims member in a xt_dsv_line_t structure. Use this function to set delims in a xt_dsv_line_t object from non-member functions. This function copies the array pointed to by new_delims to xt_dsv_line_ptr->delims. RETURN VALUESDSV_DATA_OK if the new value is acceptable and assigned DSV_DATA_OUT_OF_RANGE otherwise EXAMPLESxt_dsv_line_t xt_dsv_line; char * new_delims; size_t array_size; if ( xt_dsv_line_set_delims_cpy(&xt_dsv_line, new_delims, array_size) SEE ALSODSV_LINE_SET_DELIMS(3)
|