diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-18 09:38:36 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-18 09:38:36 +0000 |
commit | 464d646f3e667e42742a995b841080ec7b6a1540 (patch) | |
tree | bc4aeb48eff72bd88364a1c04ff4faa5df1d4781 /manual/charset.texi | |
parent | d0d7d3824e562ac4033a0960257682c744c7bc61 (diff) | |
download | glibc-464d646f3e667e42742a995b841080ec7b6a1540.tar.gz glibc-464d646f3e667e42742a995b841080ec7b6a1540.tar.xz glibc-464d646f3e667e42742a995b841080ec7b6a1540.zip |
Update.
1999-01-18 Andreas Jaeger <aj@arthur.rhein-neckar.de> * posix/test-vfork.c: Include <sys/wait.h> for wait declaration. 1999-01-16 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * manual/ctype.texi: Fix cross refs and typos. * manual/charset.texi: Likewise. 1999-01-18 Ulrich Drepper <drepper@cygnus.com> * Rules: Add dummp.y and dummy.o to common-generated. Patch by Andreas Schwab. 1999-01-18 10:07 -0500 Zack Weinberg <zack@rabi.phys.columbia.edu> * manual/libc-texinfo.sh: Use tsort.awk. * manual/tsort.awk: New file. * manual/Makefile (minimal-dist): Add tsort.awk. (distribute): Remove generated files: summary.texi, stamp-summary, chapters.texi, top-menu.texi, and texis.
Diffstat (limited to 'manual/charset.texi')
-rw-r--r-- | manual/charset.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manual/charset.texi b/manual/charset.texi index 268cce1a15..969ac04e15 100644 --- a/manual/charset.texi +++ b/manual/charset.texi @@ -358,7 +358,7 @@ current locale which determines the translation and therefore also the external encoding used. In such a situation (and many others) the functions described here are perfect. If more freedom while performing the conversion is necessary take a look at the @code{iconv} functions -(@pxref{Generic Charset Conversion}) +(@pxref{Generic Charset Conversion}). @menu * Selecting the Conversion:: Selecting the conversion and its properties. @@ -1015,7 +1015,7 @@ this is not a strict guarantee. Therefore simply NUL terminating a piece of a running text is not always an adequate solution and therefore never should be used in generally used code. -The generic conversion interface (see @xref{Generic Charset Conversion}) +The generic conversion interface (@xref{Generic Charset Conversion}) does not have this limitation (it simply works on buffers, not strings), and the GNU C library contains a set of functions which take additional parameters specifying the maximal number of bytes which are @@ -1370,7 +1370,7 @@ The function @code{mblen} is declared in @file{stdlib.h}. For convenience reasons the @w{ISO C89} standard defines also functions to convert entire strings instead of single characters. These functions suffer from the same problems as their reentrant counterparts from the -second amendment to @w{ISO C89}; see @xref{Converting Strings}. +second amendment to @w{ISO C89}; see @ref{Converting Strings}. @comment stdlib.h @comment ISO @@ -1526,7 +1526,7 @@ one has to change the @code{LC_CTYPE} locale using @code{setlocale}. This introduces major problems for the rest of the programs since several more functions (e.g., the character classification functions, -@xref{Classification of Characters}) use the @code{LC_CTYPE} category. +@pxref{Classification of Characters}) use the @code{LC_CTYPE} category. @item Parallel conversions to and from different character sets are not |