|
NAMEustrpbrk - 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); DESCRIPTIONThis function finds the first character in `s' that matches any character in `set'. Example:char *p = ustrpbrk("one,two-three.four", "-. "); RETURN VALUEReturns a pointer to the first match, or NULL if none are found.SEE ALSOuconvert(3), ustrchr(3), ustrrchr(3), ustrstr(3), ustrtok(3)
Visit the GSP FreeBSD Man Page Interface. |