Penguin
Annotated edit history of wcspbrk(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 WCSPBRK
2 !!!WCSPBRK
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 RETURN VALUE
7 CONFORMING TO
8 SEE ALSO
9 ----
10 !!NAME
11
12
13 wcspbrk - search a wide-character string for any of a set of wide characters
14 !!SYNOPSIS
15
16
17 __#include
18 __''wcs''__, const wchar_t *__''accept''__);
19 __
20 !!DESCRIPTION
21
22
23 The __wcspbrk__ function is the wide-character equivalent
24 of the __strpbrk__ function. It searches for the first
25 occurrence in the wide-character string pointed to by
26 ''wcs'' of any of the characters in the wide-character
27 string pointed to by ''accept''.
28 !!RETURN VALUE
29
30
31 The __wcspbrk__ function returns a pointer to the first
32 occurrence in ''wcs'' of any of the characters listed in
33 ''accept''. If ''wcs'' contains none of these
34 characters, NULL is returned.
35 !!CONFORMING TO
36
37
38 ISO/ANSI C, UNIX98
39 !!SEE ALSO
40
41
42 strpbrk(3), wcscspn(3),
43 wcschr(3)
44 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.