1ustrpbrk(3)                     Allegro manual                     ustrpbrk(3)
2
3
4

NAME

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

SYNOPSIS

10       #include <allegro.h>
11
12
13       char *ustrpbrk(const char *s, const char *set);
14

DESCRIPTION

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

RETURN VALUE

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

SEE ALSO

26       uconvert(3), ustrchr(3), ustrrchr(3), ustrstr(3), ustrtok(3)
27
28
29
30Allegro                          version 4.2.2                     ustrpbrk(3)
Impressum