1WMEMCHR(3)                 Linux Programmer's Manual                WMEMCHR(3)
2
3
4

NAME

6       wmemchr - search a wide character in a wide-character array
7

SYNOPSIS

9       #include <wchar.h>
10
11       wchar_t *wmemchr(const wchar_t *s, wchar_t c, size_t n);
12

DESCRIPTION

14       The wmemchr() function is the wide-character equivalent of the memchr()
15       function.  It searches the n wide characters  starting  at  s  for  the
16       first occurrence of the wide character c.
17

RETURN VALUE

19       The  wmemchr()  function returns a pointer to the first occurrence of c
20       among the n wide characters starting at s, or NULL if c does not  occur
21       among these.
22

CONFORMING TO

24       C99.
25

SEE ALSO

27       memchr(3), wcschr(3)
28
29
30
31GNU                               1999-07-25                        WMEMCHR(3)
Impressum