summaryrefslogtreecommitdiffstats
path: root/man3/iconv_open.3
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--man3/iconv_open.311
1 files changed, 5 insertions, 6 deletions
diff --git a/man3/iconv_open.3 b/man3/iconv_open.3
index 13ae778..f6a64b9 100644
--- a/man3/iconv_open.3
+++ b/man3/iconv_open.3
@@ -11,7 +11,7 @@
.\" 2007-03-31 Bruno Haible, Describe the glibc/libiconv //TRANSLIT
.\" and //IGNORE extensions for 'tocode'.
.\"
-.TH iconv_open 3 2023-07-20 "Linux man-pages 6.05.01"
+.TH iconv_open 3 2023-10-31 "Linux man-pages 6.7"
.SH NAME
iconv_open \- allocate descriptor for character set conversion
.SH LIBRARY
@@ -20,7 +20,7 @@ Standard C library
.SH SYNOPSIS
.nf
.B #include <iconv.h>
-.PP
+.P
.BI "iconv_t iconv_open(const char *" tocode ", const char *" fromcode );
.fi
.SH DESCRIPTION
@@ -32,7 +32,7 @@ for converting byte sequences from character encoding
to
character encoding
.IR tocode .
-.PP
+.P
The values permitted for
.I fromcode
and
@@ -61,13 +61,13 @@ When the string "//IGNORE" is appended to
.IR tocode ,
characters that
cannot be represented in the target character set will be silently discarded.
-.PP
+.P
The resulting conversion descriptor can be used with
.BR iconv (3)
any number of times.
It remains valid until deallocated using
.BR iconv_close (3).
-.PP
+.P
A conversion descriptor contains a conversion state.
After creation using
.BR iconv_open (),
@@ -114,7 +114,6 @@ T{
.BR iconv_open ()
T} Thread safety MT-Safe locale
.TE
-.sp 1
.SH STANDARDS
POSIX.1-2008.
.SH HISTORY