|
NAMEwmemchr , wmemcmp ,
wmemcpy , wmemmove ,
wmempcpy , wmemset ,
wcpcpy , wcpncpy ,
wcscasecmp , wcscat ,
wcschr , wcscmp ,
wcscpy , wcscspn ,
wcsdup , wcslcat ,
wcslcpy , wcslen ,
wcsncasecmp , wcsncat ,
wcsncmp , wcsncpy ,
wcsnlen , wcspbrk ,
wcsrchr , wcsspn ,
wcsstr —
wide character string manipulation operations
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <wchar.h>
wchar_t *
int
wchar_t *
wchar_t *
wchar_t *
wchar_t *
wchar_t *
wchar_t *
int
wchar_t *
wchar_t *
int
wchar_t *
size_t
wchar_t *
size_t
size_t
size_t
int
wchar_t *
int
wchar_t *
size_t
wchar_t *
wchar_t *
size_t
wchar_t *
DESCRIPTIONThe 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 ALSOmemchr(3), memcmp(3), memcpy(3), memmove(3), memset(3), stpcpy(3), stpncpy(3), strcasecmp(3), strcat(3), strchr(3), strcmp(3), strcpy(3), strcspn(3), strdup(3), strlcat(3), strlcpy(3), strlen(3), strncat(3), strncmp(3), strncpy(3), strnlen(3), strpbrk(3), strrchr(3), strspn(3), strstr(3)STANDARDSThese functions conform to ISO/IEC 9899:1999 (“ISO C99”), with the exception ofwcpcpy (), wcpncpy (),
wcscasecmp (), wcsdup (),
wcsncasecmp (), and wcsnlen (),
which conform to IEEE Std 1003.1-2008
(“POSIX.1”); and wcslcat (),
wcslcpy (), and wmempcpy (),
which are extensions.
Visit the GSP FreeBSD Man Page Interface. |