Allows to split the provided chunk, into several pieces that are separated by the separator (or separators) provided. The function will try to split the chunk provide using the separator provided, and optionally, all separators provided. Here is an example: char ** result; // split the provided value using the ':', ';' and ',' as separators. result = axl_stream_split (value, 3, ":", ";", ","); The value returned must be deallocated using axl_stream_freev.
|