table of contents
other versions
- testing 3.2.10+ds-1
- unstable 3.2.10+ds-1
- experimental 3.2.16+ds-1
SDL_strpbrk(3) | SDL3 FUNCTIONS | SDL_strpbrk(3) |
NAME¶
SDL_strpbrk - Searches a string for the first occurence of any character contained in a breakset, and returns a pointer from the string to that character.
SYNOPSIS¶
#include <SDL3/SDL_stdinc.h>
char * SDL_strpbrk(const char *str, const char *breakset);
FUNCTION PARAMETERS¶
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.
SDL 3.2.16 | Simple Directmedia Layer |