pub unsafe extern "C" fn svn_cstring_tokenize(
sep: *const c_char,
str_: *mut *mut c_char,
) -> *mut c_char
Expand description
Get the next token from @a *str interpreting any char from @a sep as a token separator. Separators at the beginning of @a str will be skipped. Returns a pointer to the beginning of the first token in @a *str or NULL if no token is left. Modifies @a str such that the next call will return the next token.
@note The content of @a *str may be modified by this function.
@since New in 1.8.