.\" Generated by the Allegro makedoc utility .TH ustrpbrk 3alleg4 "version 4.4.3" "Allegro" "Allegro manual" .SH NAME ustrpbrk \- Finds the first character that matches any in a set. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B char *ustrpbrk(const char *s, const char *set); .SH DESCRIPTION This function finds the first character in `s' that matches any character in `set'. Example: .nf char *p = ustrpbrk("one,two-three.four", "-. "); .fi .SH "RETURN VALUE" Returns a pointer to the first match, or NULL if none are found. .SH SEE ALSO .BR uconvert (3alleg4), .BR ustrchr (3alleg4), .BR ustrrchr (3alleg4), .BR ustrstr (3alleg4), .BR ustrtok (3alleg4)