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

ustrpbrk - Finds the first character that matches any in a set. Allegro game programming library.

Description

       This function finds the first character in `s' that matches any character in `set'. Example:

          char *p = ustrpbrk("one,two-three.four", "-. ");

Name

       ustrpbrk - Finds the first character that matches any in a set. Allegro game programming library.

Return Value

       Returns a pointer to the first match, or NULL if none are found.

See Also

uconvert(3alleg4), ustrchr(3alleg4), ustrrchr(3alleg4), ustrstr(3alleg4), ustrtok(3alleg4)

Allegro                                           version 4.4.3                                ustrpbrk(3alleg4)

Synopsis

#include<allegro.h>char*ustrpbrk(constchar*s,constchar*set);

See Also