Penguin
Annotated edit history of strpbrk(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 STRPBRK
2 !!!STRPBRK
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 strpbrk - search a string for any of a set of characters
14 !!SYNOPSIS
15
16
17 __#include
18 __''s''__, const char *__''accept''__);
19 __
20 !!DESCRIPTION
21
22
23 The __strpbrk()__ function locates the first occurrence
24 in the string ''s'' of any of the characters in the
25 string ''accept''.
26 !!RETURN VALUE
27
28
29 The __strpbrk()__ function returns a pointer to the
30 character in ''s'' that matches one of the characters in
31 ''accept'', or NULL if no such character is
32 found.
33 !!CONFORMING TO
34
35
36 SVID 3, POSIX, BSD 4.3, ISO 9899
37 !!SEE ALSO
38
39
40 index(3), memchr(3), rindex(3),
41 strchr(3), strsep(3), strspn(3),
42 strstr(3), strtok(3)
43 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.