Function SDL_strpbrk
pub unsafe extern "C" fn SDL_strpbrk(
str: *const i8,
breakset: *const i8,
) -> *mut i8
Available on crate feature
dep_sdl3
only.Expand description
Searches a string for the first occurence of any character contained in a breakset, and returns a pointer from the string to that character.
§Parameters
str
: The null-terminated string to be searched. Must not be NULL, and must not overlap withbreakset
.breakset
: A null-terminated string containing the list of characters to look for. Must not be NULL, and must not overlap withstr
.
§Return value
Returns A pointer to the location, in str, of the first occurence of a character present in the breakset, or NULL if none is found.
§Thread safety
It is safe to call this function from any thread.
§Availability
This function is available since SDL 3.2.0.