This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



WMEMCHR(3)                              BSD Library Functions Manual                              WMEMCHR(3)

NAME
     wcscat, wcschr, wcscmp, wcscpy, wcscspn, wcslcat, wcslcpy, wcslen, wcsncat, wcsncmp, wcsncpy, wcspbrk,
     wcsrchr, wcsspn, wcsstr, wmemchr, wmemcmp, wmemcpy, wmemmove, wmemset -- wide character string manipu-lation manipulation
     lation operations

LIBRARY
     Standard C Library (libc, -lc)

SYNOPSIS
     #include <wchar.h>

     wchar_t *
     wcscat(wchar_t *restrict ws1, const wchar_t *restrict ws2);

     wchar_t *
     wcschr(const wchar_t *ws, wchar_t wc);

     int
     wcscmp(const wchar_t *ws1, const wchar_t *ws2);

     wchar_t *
     wcscpy(wchar_t *restrict ws1, const wchar_t *restrict ws2);

     size_t
     wcscspn(const wchar_t *ws1, const wchar_t *ws2);

     size_t
     wcslcat(wchar_t *ws1, const wchar_t *ws2, size_t n);

     size_t
     wcslcpy(wchar_t *ws1, const wchar_t *ws2, size_t n);

     size_t
     wcslen(const wchar_t *ws);

     wchar_t *
     wcsncat(wchar_t *restrict ws1, const wchar_t *restrict ws2, size_t n);

     int
     wcsncmp(const wchar_t *ws1, const wchar_t *ws2, size_t n);

     wchar_t *
     wcsncpy(wchar_t *restrict ws1, const wchar_t *restrict ws2, size_t n);

     wchar_t *
     wcspbrk(const wchar_t *ws1, const wchar_t *ws2);

     wchar_t *
     wcsrchr(const wchar_t *ws, wchar_t wc);

     size_t
     wcsspn(const wchar_t *ws1, const wchar_t *ws2);

     wchar_t *
     wcsstr(const wchar_t *restrict ws1, const wchar_t *restrict ws2);

     wchar_t *
     wmemchr(const wchar_t *ws, wchar_t wc, size_t n);

     int
     wmemcmp(const wchar_t *ws1, const wchar_t *ws2, size_t n);

     wchar_t *
     wmemcpy(wchar_t *restrict ws1, const wchar_t *restrict ws2, size_t n);

     wchar_t *
     wmemmove(wchar_t *ws1, const wchar_t *ws2, size_t n);

     wchar_t *
     wmemset(wchar_t *ws, wchar_t wc, size_t n);

DESCRIPTION
     The functions implement string manipulation operations over wide character strings.  For a detailed
     description, refer to documents for the respective single-byte counterpart, such as memchr(3).

SEE ALSO
     memchr(3), memcmp(3), memcpy(3), memmove(3), memset(3), strcat(3), strchr(3), strcmp(3), strcpy(3),
     strcspn(3), strlcat(3), strlcpy(3), strlen(3), strncat(3), strncmp(3), strncpy(3), strpbrk(3),
     strrchr(3), strspn(3), strstr(3)

STANDARDS
     These functions conform to ISO/IEC 9899:1999 (``ISO C99''), with the exception of wcslcat() and
     wcslcpy(), which are extensions.

BSD                                           December 22, 2000                                          BSD

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation with the feedback links below.
Bug reports
Report bugs in the functionality of the described tool or API through Bug Reporter.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...