1ustrpbrk(3) Allegro manual ustrpbrk(3)
2
3
4
6 ustrpbrk - Finds the first character that matches any in a set. Allegro
7 game programming library.
8
10 #include <allegro.h>
11
12
13 char *ustrpbrk(const char *s, const char *set);
14
16 This function finds the first character in `s' that matches any characā
17 ter in `set'. Example:
18
19 char *p = ustrpbrk("one,two-three.four", "-. ");
20
22 Returns a pointer to the first match, or NULL if none are found.
23
24
26 uconvert(3), ustrchr(3), ustrrchr(3), ustrstr(3), ustrtok(3)
27
28
29
30Allegro version 4.4.3 ustrpbrk(3)