SDL Wiki
(This is the documentation for SDL3, which is under heavy development and the API is changing! SDL2 is the current stable version!)

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.

Header File

Defined in <SDL3/SDL_stdinc.h>

Syntax

char * SDL_strpbrk(const char *str, const char *breakset);

Function Parameters

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

Return Value

(char *) 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.

Version

This function is available since SDL 3.0.0.


CategoryAPI, CategoryAPIFunction, CategoryStdinc


[ edit | delete | history | feedback | raw ]

[ front page | index | search | recent changes | git repo | offline html ]

All wiki content is licensed under Creative Commons Attribution 4.0 International (CC BY 4.0).
Wiki powered by ghwikipp.