1ICONV_CLOSE(3) Linux Programmer's Manual ICONV_CLOSE(3)
2
3
4
6 iconv_close - deallocate descriptor for character set conversion
7
9 #include <iconv.h>
10
11 int iconv_close(iconv_t cd);
12
14 The iconv_close() function deallocates a conversion descriptor cd pre‐
15 viously allocated using iconv_open(3).
16
18 When successful, the iconv_close() function returns 0. In case of
19 error, it sets errno and returns -1.
20
22 This function is available in glibc since version 2.1.
23
25 UNIX98, POSIX.1-2001.
26
28 iconv(3), iconv_open(3)
29
31 This page is part of release 3.53 of the Linux man-pages project. A
32 description of the project, and information about reporting bugs, can
33 be found at http://www.kernel.org/doc/man-pages/.
34
35
36
37GNU 2008-08-11 ICONV_CLOSE(3)