diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-03-24 08:54:48 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-03-24 08:54:48 +0100 |
commit | 163a663518f33bab48b28431972e580b366b4d49 (patch) | |
tree | f518ffabaca4a0b93f0103d617e803792d3b0b43 /doc/wchar_t.texi | |
parent | 1b3a8d5ad2ea2f099d514d9dd51ebf926a628076 (diff) | |
parent | dd0000f7e25abe6c28d4329d324fd7fcab54094f (diff) |
Merge branch 'release/debian/1.2-1'HEADdebian/1.2-1master
Diffstat (limited to 'doc/wchar_t.texi')
-rw-r--r-- | doc/wchar_t.texi | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/wchar_t.texi b/doc/wchar_t.texi index f5c239a5..28c63cdf 100644 --- a/doc/wchar_t.texi +++ b/doc/wchar_t.texi @@ -8,7 +8,8 @@ problem mentioned in the section @ref{char * strings}. They introduced @item a type @samp{wchar_t}, designed to encapsulate an entire character, @item -a ``wide string'' type @samp{wchar_t *}, and +a ``wide string'' type @samp{wchar_t *}, with some API functions declared in +@posixheader{wchar.h}, and @item functions declared in @posixheader{wctype.h} that were meant to supplant the ones in @posixheader{ctype.h}. @@ -18,8 +19,8 @@ Unfortunately, this API and its implementation has numerous problems: @itemize @bullet @item -On AIX and Windows platforms, @code{wchar_t} is a 16-bit type. This -means that it can never accommodate an entire Unicode character. Either +On Windows platforms and on AIX in 32-bit mode, @code{wchar_t} is a 16-bit type. +This means that it can never accommodate an entire Unicode character. Either the @code{wchar_t *} strings are limited to characters in UCS-2 (the ``Basic Multilingual Plane'' of Unicode), or --- if @code{wchar_t *} strings are encoded in UTF-16 --- a @code{wchar_t} represents only half |