From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/iconv/man/iconv_open_into.3.html | 120 +++++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 jni/iconv/man/iconv_open_into.3.html (limited to 'jni/iconv/man/iconv_open_into.3.html') diff --git a/jni/iconv/man/iconv_open_into.3.html b/jni/iconv/man/iconv_open_into.3.html new file mode 100644 index 0000000..6ed9f08 --- /dev/null +++ b/jni/iconv/man/iconv_open_into.3.html @@ -0,0 +1,120 @@ + + + + +ICONV_OPEN_INTO + + + +

ICONV_OPEN_INTO

+NAME
+SYNOPSIS
+DESCRIPTION
+RETURN VALUE
+ERRORS
+CONFORMING TO
+SEE ALSO
+ +
+ + + +

NAME

+ + +
+iconv_open_into - initialize descriptor for character set conversion
+ +

SYNOPSIS

+ + + +
+
#include <iconv.h>
+
+int iconv_open_into (const char* tocode, const char* fromcode,
+                     iconv_allocation_t* resultp);
+
+ +

DESCRIPTION

+ + + +
+The iconv_open_into function initializes a conversion +descriptor suitable for converting byte sequences from +character encoding fromcode to character encoding +tocode. The conversion descriptor is stored in the +memory pointed to by resultp.
+ + + +
+The values permitted for fromcode and tocode +are the same as for the function +iconv_open.
+ + + +
+After a successful return from this function, resultp +can be be used as an iconv_t object with the +iconv function.
+ +

RETURN VALUE

+ + + +
+The iconv_open_into function fills +*resultp and returns 0 if it succeeds. In case +of error, it sets errno and returns -1.
+ +

ERRORS

+ + + +
+The following error can occur, among others:
+ + + +
+EINVAL
+ + + +
+The conversion from fromcode to tocode is not +supported by the implementation.
+ +

CONFORMING TO

+ + + +
+This function is implemented only in GNU libiconv and not in +other iconv implementations. It is not backed by a +standard. You can test for its presence through +(_LIBICONV_VERSION >= 0x010D).
+ +

SEE ALSO

+ + + +
+iconv_open(3) iconv(3)
+
+ + -- cgit v1.2.3-70-g09d2