2002-08-30 03:47:43 +08:00
|
|
|
@node Wchar strings
|
|
|
|
@chapter Wide Character Strings (@file{wchar.h})
|
|
|
|
|
|
|
|
This chapter describes wide-character string-handling functions and
|
2005-10-29 05:33:23 +08:00
|
|
|
managing areas of memory containing wide characters. The corresponding
|
2002-08-30 03:47:43 +08:00
|
|
|
declarations are in @file{wchar.h}.
|
|
|
|
|
|
|
|
@menu
|
2005-10-29 05:33:23 +08:00
|
|
|
* wmemchr:: Find wide character in memory
|
2002-08-30 03:47:43 +08:00
|
|
|
* wmemcmp:: Compare two wide-character memory areas
|
|
|
|
* wmemcpy:: Copy wide-character memory regions
|
|
|
|
* wmemmove:: Move possibly overlapping wide-character memory
|
2005-10-29 05:33:23 +08:00
|
|
|
* wmemset:: Set an area of memory to a specified wide character
|
2002-08-30 03:47:43 +08:00
|
|
|
* wcscat:: Concatenate wide-character strings
|
2005-10-29 05:33:23 +08:00
|
|
|
* wcschr:: Search for wide character in string
|
2002-08-30 03:47:43 +08:00
|
|
|
* wcscmp:: Wide-character string compare
|
2005-10-29 05:33:23 +08:00
|
|
|
* wcscoll:: Locale-specific wide-character string compare
|
2002-08-30 03:47:43 +08:00
|
|
|
* wcscpy:: Copy wide-character string
|
2007-12-20 01:33:12 +08:00
|
|
|
* wcpcpy:: Copy a wide-character string returning a pointer to its end
|
2005-10-29 05:33:23 +08:00
|
|
|
* wcscspn:: Count wide characters not in string
|
2009-03-12 23:34:57 +08:00
|
|
|
* wcsftime:: Convert date and time to a formatted wide-character string
|
2002-08-30 03:47:43 +08:00
|
|
|
* wcslcat:: Concatenate wide-character strings to specified length
|
|
|
|
* wcslcpy:: Copy wide-character string to specified length
|
|
|
|
* wcslen:: Wide-character string length
|
|
|
|
* wcsncat:: Concatenate wide-character strings
|
|
|
|
* wcsncmp:: Wide-character string compare
|
|
|
|
* wcsncpy:: Counted copy wide-character string
|
2007-12-20 01:33:12 +08:00
|
|
|
* wcpncpy:: Copy part of a wide-character string returning a pointer to its end
|
2003-10-24 02:07:13 +08:00
|
|
|
* wcsnlen:: Wide-character string length with maximum limit
|
2005-10-29 05:33:23 +08:00
|
|
|
* wcspbrk:: Find wide characters in string
|
|
|
|
* wcsrchr:: Reverse search for wide character in string
|
2002-08-30 03:47:43 +08:00
|
|
|
* wcsspn:: Find initial match in wide-character string
|
|
|
|
* wcsstr:: Find wide-character string segment
|
2008-12-13 03:47:05 +08:00
|
|
|
* wcstok:: Tokenize wide-character string
|
2003-04-09 18:42:12 +08:00
|
|
|
* wcswidth:: Number of column positions of a wide-character string
|
2007-07-05 00:18:34 +08:00
|
|
|
* wcsxfrm:: Locale-specific wide-character string transformation
|
2003-04-09 18:42:12 +08:00
|
|
|
* wcwidth:: Number of column positions of a wide-character code
|
2002-08-30 03:47:43 +08:00
|
|
|
@end menu
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wmemchr.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wmemcmp.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wmemcpy.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wmemmove.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wmemset.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wcscat.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wcschr.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wcscmp.def
|
|
|
|
|
2003-04-03 16:26:07 +08:00
|
|
|
@page
|
|
|
|
@include string/wcscoll.def
|
|
|
|
|
2002-08-30 03:47:43 +08:00
|
|
|
@page
|
|
|
|
@include string/wcscpy.def
|
|
|
|
|
2007-12-20 01:33:12 +08:00
|
|
|
@page
|
|
|
|
@include string/wcpcpy.def
|
|
|
|
|
2002-08-30 03:47:43 +08:00
|
|
|
@page
|
|
|
|
@include string/wcscspn.def
|
|
|
|
|
2009-03-12 23:34:57 +08:00
|
|
|
@page
|
|
|
|
@include time/wcsftime.def
|
|
|
|
|
2002-08-30 03:47:43 +08:00
|
|
|
@page
|
|
|
|
@include string/wcslcat.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wcslcpy.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wcslen.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wcsncat.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wcsncmp.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wcsncpy.def
|
|
|
|
|
2007-12-20 01:33:12 +08:00
|
|
|
@page
|
|
|
|
@include string/wcpncpy.def
|
|
|
|
|
2003-10-24 02:07:13 +08:00
|
|
|
@page
|
|
|
|
@include string/wcsnlen.def
|
|
|
|
|
2002-08-30 03:47:43 +08:00
|
|
|
@page
|
|
|
|
@include string/wcspbrk.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wcsrchr.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wcsspn.def
|
|
|
|
|
|
|
|
@page
|
|
|
|
@include string/wcsstr.def
|
|
|
|
|
2008-12-13 03:47:05 +08:00
|
|
|
@page
|
|
|
|
@include string/wcstok.def
|
|
|
|
|
2003-04-09 18:42:12 +08:00
|
|
|
@page
|
|
|
|
@include string/wcswidth.def
|
|
|
|
|
2007-07-05 00:18:34 +08:00
|
|
|
@page
|
|
|
|
@include string/wcsxfrm.def
|
|
|
|
|
2003-04-09 18:42:12 +08:00
|
|
|
@page
|
|
|
|
@include string/wcwidth.def
|
|
|
|
|