OSDN Git Service

94047e4f91b23dabc4da33f38fcd99edf023cf71
[linuxjm/LDP_man-pages.git] / draft / man3 / iconv_close.3
1 .\" Copyright (c) Bruno Haible <haible@clisp.cons.org>
2 .\"
3 .\" This is free documentation; you can redistribute it and/or
4 .\" modify it under the terms of the GNU General Public License as
5 .\" published by the Free Software Foundation; either version 2 of
6 .\" the License, or (at your option) any later version.
7 .\"
8 .\" References consulted:
9 .\"   GNU glibc-2 source code and manual
10 .\"   OpenGroup's Single UNIX specification http://www.UNIX-systems.org/online.html
11 .\"
12 .\" Japanese Version Copyright (c) 2000 Yuichi SATO
13 .\"         all rights reserved.   
14 .\" Translated Tue Jul 11 19:02:58 JST 2000
15 .\"         by Yuichi SATO <sato@complex.eng.hokudai.ac.jp>
16 .\"
17 .\"WORD:        conversion      変換
18 .\"WORD:        deallocate      解放する
19 .\"WORD:        descriptor      ディスクリプター
20 .\"WORD:        
21 .\"
22 .TH ICONV_CLOSE 3 2008-08-11 "GNU" "Linux Programmer's Manual"
23 .\"O .SH NAME
24 .SH 名前
25 .\"O iconv_close \- deallocate descriptor for character set conversion
26 iconv_close \- 文字セット変換のためのディスクリプターを解放する
27 .\"O .SH SYNOPSIS
28 .SH 書式
29 .nf
30 .B #include <iconv.h>
31 .sp
32 .BI "int iconv_close(iconv_t " cd );
33 .fi
34 .\"O .SH DESCRIPTION
35 .SH 説明
36 .\"O The
37 .\"O .BR iconv_close ()
38 .\"O function deallocates a conversion descriptor \fIcd\fP
39 .\"O previously allocated using
40 .\"O .BR iconv_open (3).
41 .BR iconv_close ()
42 関数は、
43 .BR iconv_open (3)
44 を使って以前に割り当てられた
45 変換ディスクリプター \fIcd\fP を解放する。
46 .\"O .SH "RETURN VALUE"
47 .SH 返り値
48 .\"O When successful, the
49 .\"O .BR iconv_close ()
50 .\"O function returns 0.
51 .\"O In case of error, it sets
52 .\"O .I errno
53 .\"O and returns \-1.
54 成功した場合、
55 .BR iconv_close ()
56 関数は 0 を返す。
57 エラーの場合、この関数は 
58 .I errno
59 を設定し \-1 を返す。
60 .\"O .SH VERSIONS
61 .SH バージョン
62 .\"O This function is available in glibc since version 2.1.
63 この関数はバージョン 2.1 以降の glibc で利用可能である。
64 .\"O .SH "CONFORMING TO"
65 .SH 準拠
66 UNIX98, POSIX.1-2001.
67 .\"O .SH "SEE ALSO"
68 .SH 関連項目
69 .BR iconv (3),
70 .BR iconv_open (3)