OSDN Git Service

(split) LDP: draft snapshots from latest ja.po(s).
[linuxjm/LDP_man-pages.git] / draft / man3 / gnu_get_libc_version.3
index 58bbab1..f9b797a 100644 (file)
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
 .\"
-.\" Japanese Version Copyright (c) 2008  Akihiro MOTOKI
-.\"         all rights reserved.
-.\" Translated 2008-08-21, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>, LDP v3.04
-.\" 
-.TH GNU_GET_LIBC_VERSION 3 2008-07-02 "Linux" "Linux Programmer's Manual"
-.\"O .SH NAME
-.SH Ì¾Á°
-.\"O gnu_get_libc_version, gnu_get_libc_release \- get glibc version and release
-gnu_get_libc_version, gnu_get_libc_release \- glibc ¤Î¥Ð¡¼¥¸¥ç¥ó¤È
-¥ê¥ê¡¼¥¹¾õÂÖ¤ò¼èÆÀ¤¹¤ë
-.\"O .SH SYNOPSIS
-.SH ½ñ¼°
+.\"*******************************************************************
+.\"
+.\" This file was generated with po4a. Translate the source file.
+.\"
+.\"*******************************************************************
+.TH GNU_GET_LIBC_VERSION 3 2010\-09\-10 Linux "Linux Programmer's Manual"
+.SH 名前
+gnu_get_libc_version, gnu_get_libc_release \- glibc のバージョンと リリース状態を取得する
+.SH 書式
 .nf
-.B #define _GNU_SOURCE
-.B #include <gnu/libc-version.h>
+\fB#define _GNU_SOURCE\fP             /* feature_test_macros(7) 参照 */
+\fB#include <gnu/libc\-version.h>\fP
 
-.B const char *gnu_get_libc_version(void);
-.B const char *gnu_get_libc_release(void);
+\fBconst char *gnu_get_libc_version(void);\fP
+\fBconst char *gnu_get_libc_release(void);\fP
 .fi
-.\"O .SH DESCRIPTION
-.SH ÀâÌÀ
-.\"O The function
-.\"O .BR gnu_get_libc_version ()
-.\"O returns a string that identifies the glibc version available on the system.
-.BR gnu_get_libc_version ()
-´Ø¿ô¤Ï¡¢¥·¥¹¥Æ¥à¤ÇÍøÍѲÄǽ¤Ê glibc ¤Î¥Ð¡¼¥¸¥ç¥ó¤òÆÃÄꤹ¤ëʸ»úÎó¤òÊÖ¤¹¡£
+.SH 説明
+\fBgnu_get_libc_version\fP()  関数は、システムで利用可能な glibc のバージョンを特定する文字列を返す。
 
-.\"O The function
-.\"O .BR gnu_get_libc_release ()
-.\"O returns a string indicates the release status of the glibc version
-.\"O available on the system.
-.\"O This will be a string such as
-.\"O .IR "stable" .
-.BR gnu_get_libc_release ()
-´Ø¿ô¤Ï¡¢¥·¥¹¥Æ¥à¤ÇÍøÍѲÄǽ¤Ê glibc ¥Ð¡¼¥¸¥ç¥ó¤Î¥ê¥ê¡¼¥¹¾õÂÖ¤ò¼¨¤¹
-ʸ»úÎó¤òÊÖ¤¹¡£
-.I "stable"
-¤È¤¤¤Ã¤¿Ê¸»úÎó¤¬ÊÖ¤µ¤ì¤ë¡£
-.\"O .SH VERSIONS
-.SH ¥Ð¡¼¥¸¥ç¥ó
-.\"O These functions first appeared in glibc in version 2.1.
-¤³¤ì¤é¤Î´Ø¿ô¤Ï glibc ¥Ð¡¼¥¸¥ç¥ó 2.1 ¤Ç½é¤á¤ÆÅо줷¤¿¡£
-.\"O .SH CONFORMING TO
-.SH ½àµò
-.\"O These functions are glibc-specific.
-¤³¤ì¤é¤Î´Ø¿ô¤Ï glibc ¸ÇÍ­¤Ç¤¢¤ë¡£
-.\"O .SH EXAMPLE
-.SH Îã
-.\"O When run, the program below will produce output such as the following:
-²¼µ­¤Î¥×¥í¥°¥é¥à¤ò¼Â¹Ô¤¹¤ë¤È¡¢¼¡¤Î¤è¤¦¤Ê½ÐÎϤ¬ÆÀ¤é¤ì¤ë¡£
+\fBgnu_get_libc_release\fP()  関数は、システムで利用可能な glibc バージョンのリリース状態を示す 文字列を返す。
+\fIstable\fP といった文字列が返される。
+.SH バージョン
+これらの関数は glibc バージョン 2.1 で初めて登場した。
+.SH 準拠
+これらの関数は glibc 固有である。
+.SH 例
+下記のプログラムを実行すると、次のような出力が得られる。
 .in +4n
 .nf
 
-.RB "$" " ./a.out"
+$\fB ./a.out\fP
 GNU libc version: 2.8
 GNU libc release: stable
 .fi
 .in
-.\"O .SS Program source
-.SS ¥×¥í¥°¥é¥à¤Î¥½¡¼¥¹
+.SS プログラムのソース
 \&
 .nf
-#include <gnu/libc-version.h>
+#include <gnu/libc\-version.h>
 #include <stdlib.h>
 #include <stdio.h>
 
 int
 main(int argc, char *argv[])
 {
-    printf("GNU libc version: %s\\n", gnu_get_libc_version());
-    printf("GNU libc release: %s\\n", gnu_get_libc_release());
+    printf("GNU libc version: %s\en", gnu_get_libc_version());
+    printf("GNU libc release: %s\en", gnu_get_libc_release());
     exit(EXIT_SUCCESS);
 }
 .fi
-.\"O .SH SEE ALSO
-.SH ´ØÏ¢¹àÌÜ
-.BR confstr (3)
+.SH 関連項目
+\fBconfstr\fP(3)
+.SH この文書について
+この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.41 の一部
+である。プロジェクトの説明とバグ報告に関する情報は
+http://www.kernel.org/doc/man\-pages/ に書かれている。