From: Michael Orlitzky Date: Mon, 6 Jul 2026 16:49:39 +0000 (-0400) Subject: README.rst: documentation pointers for non-conformance X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=71f52084b1e5ef02195468ed533e7671b6ceb0a4;p=iconv-quirks.git README.rst: documentation pointers for non-conformance --- diff --git a/README.rst b/README.rst index b05544f..7a4f8ab 100644 --- a/README.rst +++ b/README.rst @@ -39,11 +39,19 @@ mind that most of these implementations predate (this part of) POSIX. glibc ----- -* With no indicator suffixes, iconv() returns EILSEQ for - valid but untranslatable sequences. +* With no indicator suffixes, iconv() returns EILSEQ for valid but + untranslatable sequences. This is documented in both glibc's + documentation (charset.texi) and in the Linux man-pages iconv(3) + page. libiconv -------- -* With no indicator suffixes, iconv() returns EILSEQ for - valid but untranslatable sequences. +* With no indicator suffixes, iconv() returns EILSEQ for valid but + untranslatable sequences. This is documented in both the libiconv + and Linux man-pages iconv(3) pages. + +* Depending on the platform, libiconv may use ``const char **`` for + the type of the input buffer. POSIX has ``char **``. This is + documented in the NOTES section of libiconv's iconv(3) man page. +