1ICONV_CLOSE(P) POSIX Programmer's Manual ICONV_CLOSE(P)
2
3
4
6 iconv_close - codeset conversion deallocation function
7
9 #include <iconv.h>
10
11 int iconv_close(iconv_t cd);
12
13
15 The iconv_close() function shall deallocate the conversion descriptor
16 cd and all other associated resources allocated by iconv_open().
17
18 If a file descriptor is used to implement the type iconv_t, that file
19 descriptor shall be closed.
20
22 Upon successful completion, 0 shall be returned; otherwise, -1 shall be
23 returned and errno set to indicate the error.
24
26 The iconv_close() function may fail if:
27
28 EBADF The conversion descriptor is invalid.
29
30
31 The following sections are informative.
32
34 None.
35
37 None.
38
40 None.
41
43 None.
44
46 iconv() , iconv_open() , the Base Definitions volume of
47 IEEE Std 1003.1-2001, <iconv.h>
48
50 Portions of this text are reprinted and reproduced in electronic form
51 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
52 -- Portable Operating System Interface (POSIX), The Open Group Base
53 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
54 Electrical and Electronics Engineers, Inc and The Open Group. In the
55 event of any discrepancy between this version and the original IEEE and
56 The Open Group Standard, the original IEEE and The Open Group Standard
57 is the referee document. The original Standard can be obtained online
58 at http://www.opengroup.org/unix/online.html .
59
60
61
62IEEE/The Open Group 2003 ICONV_CLOSE(P)