]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/iconv_close.3
All pages: Remove the 5th argument to .TH
[thirdparty/man-pages.git] / man3 / iconv_close.3
CommitLineData
fea681da
MK
1.\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2.\"
e4a74ca8 3.\" SPDX-License-Identifier: GPL-2.0-or-later
fea681da
MK
4.\"
5.\" References consulted:
6.\" GNU glibc-2 source code and manual
008f1ecc 7.\" OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
fea681da 8.\"
45186a5d 9.TH ICONV_CLOSE 3 2021-03-22 "Linux man-pages (unreleased)"
fea681da
MK
10.SH NAME
11iconv_close \- deallocate descriptor for character set conversion
4508f8a0
AC
12.SH LIBRARY
13Standard C library
8fc3b2cf 14.RI ( libc ", " \-lc )
fea681da
MK
15.SH SYNOPSIS
16.nf
17.B #include <iconv.h>
68e4db0a 18.PP
fea681da
MK
19.BI "int iconv_close(iconv_t " cd );
20.fi
21.SH DESCRIPTION
60a90ecd
MK
22The
23.BR iconv_close ()
c6fa0841
MK
24function deallocates a conversion descriptor
25.I cd
60a90ecd 26previously allocated using
7a056410 27.BR iconv_open (3).
47297adb 28.SH RETURN VALUE
7a6227d3 29On success,
60a90ecd 30.BR iconv_close ()
7a6227d3 31returns 0; otherwise, it returns \-1 and sets
fea681da 32.I errno
7a6227d3 33to indicate the error.
3fd4929b
MK
34.SH VERSIONS
35This function is available in glibc since version 2.1.
9af22d9e
ZL
36.SH ATTRIBUTES
37For an explanation of the terms used in this section, see
38.BR attributes (7).
c466875e
MK
39.ad l
40.nh
9af22d9e
ZL
41.TS
42allbox;
c466875e 43lbx lb lb
9af22d9e
ZL
44l l l.
45Interface Attribute Value
46T{
47.BR iconv_close ()
48T} Thread safety MT-Safe
49.TE
c466875e
MK
50.hy
51.ad
847e0d88 52.sp 1
3113c7f3 53.SH STANDARDS
d3af28aa 54POSIX.1-2001, POSIX.1-2008, SUSv2.
47297adb 55.SH SEE ALSO
fea681da
MK
56.BR iconv (3),
57.BR iconv_open (3)