ustrpbrk.3alleg

Langue: en

Version: version 4.2.2 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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 character 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(3alleg), ustrchr(3alleg), ustrrchr(3alleg), ustrstr(3alleg), ustrtok(3alleg)