OSDN Git Service

Update release pages
[linuxjm/LDP_man-pages.git] / release / man3 / fclose.3
index 05f68f8..ba195f8 100644 (file)
 .\" This file was generated with po4a. Translate the source file.
 .\"
 .\"*******************************************************************
+.\"
+.\" Japanese Version Copyright (c) 1997 YOSHINO Takashi
+.\"       all rights reserved.
+.\" Translated Mon Jan 20 18:30:47 JST 1997
+.\"       by Takashi Yoshino <tyoshino@eng.toyo.ac.jp>
+.\" Updated Mon Sep 25 01:58:44 JST 2000
+.\"       by Kentaro Shirakata <argrath@ub32.org>
+.\" Updated & Modified Tue Apr  3 20:49:00 JST 2001
+.\"         by Yuichi SATO <ysato@h4.dion.ne.jp>
+.\" Updated & Modified Mon Jan 10 08:08:29 JST 2005
+.\"         by Yuichi SATO <ysato444@yahoo.co.jp>
+.\"
 .TH FCLOSE 3 2009\-02\-23 GNU "Linux Programmer's Manual"
 .SH 名前
 fclose \- ストリームを閉じる
 .SH 書式
 \fB#include <stdio.h>\fP
 .sp
-\fBint fclose(FILE *\fP\fIfp\fP\fB);\fP
+\fBint fclose(FILE *\fP\fIstream\fP\fB);\fP
 .SH 説明
-\fBfclose\fP() 関数は、 \fIfp\fP が指すストリームを (バッファリングされて
+\fBfclose\fP() 関数は、 \fIstream\fP が指すストリームを (バッファリングされて
 いた全ての出力データを \fBfflush\fP(3) を用いて書き込んで) フラッシュし、
 対応するファイルディスクリプタをクローズする。
 .SH 返り値
@@ -66,8 +78,8 @@ fclose \- ストリームを閉じる
 .\"  This error cannot occur unless you are mixing ANSI C stdio operations and
 .\"  low-level file operations on the same stream. If you do get this error,
 .\"  you must have closed the stream's low-level file descriptor using
-.\"  something like close(fileno(fp)).
-\fIfp\fP の基となるファイルディスクリプタが不正である。
+.\"  something like close(fileno(stream)).
+\fIstream\fP の基となるファイルディスクリプタが不正である。
 .PP
 \fBfclose\fP()  関数はこれ以外にも \fBclose\fP(2), \fBwrite\fP(2), \fBfflush\fP(3)
 のルーチンで失敗することがある。その場合は \fIerrno\fP が、失敗したルーチンで設定された値に設定される。
@@ -79,7 +91,3 @@ C89, C99.
 フラッシュしなければならない。
 .SH 関連項目
 \fBclose\fP(2), \fBfcloseall\fP(3), \fBfflush\fP(3), \fBfopen\fP(3), \fBsetbuf\fP(3)
-.SH この文書について
-この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.52 の一部
-である。プロジェクトの説明とバグ報告に関する情報は
-http://www.kernel.org/doc/man\-pages/ に書かれている。