logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_strpbrk - Searches a string for the first occurence of any character contained in a breakset, and

Availability

       This function is available since SDL 3.2.0.

Simple Directmedia Layer                           SDL 3.2.10                                     SDL_strpbrk(3)

Function Parameters

str    The null-terminated string to be searched. Must not be NULL, and must not overlap with breakset .

       breakset
              A null-terminated string containing the list of characters to look for. Must not be NULL, and must
              not overlap with str .

Header File

       Defined in SDL3/SDL_stdinc.h

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.

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.

Synopsis

#include"SDL3/SDL.h"char*SDL_strpbrk(constchar*str,constchar*breakset);

Thread Safety

       It is safe to call this function from any thread.

See Also