FreeBSD Manual Pages
ustrpbrk(3) Allegro manual ustrpbrk(3) NAME ustrpbrk - Finds the first character that matches any in a set. Allegro game programming library. SYNOPSIS #include <allegro.h> char *ustrpbrk(const char *s, const char *set); DESCRIPTION This function finds the first character in `s' that matches any charac- ter in `set'. Example: char *p = ustrpbrk("one,two-three.four", "-. "); RETURN VALUE Returns a pointer to the first match, or NULL if none are found. SEE ALSO uconvert(3), ustrchr(3), ustrrchr(3), ustrstr(3), ustrtok(3) Allegro version 4.4.3 ustrpbrk(3)
NAME | SYNOPSIS | DESCRIPTION | RETURN VALUE | SEE ALSO
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=ustrpbrk&sektion=3&manpath=FreeBSD+13.0-RELEASE+and+Ports>