OSDN Git Service

(split) LDP: draft snapshot generated from latest ja.po files.
[linuxjm/LDP_man-pages.git] / draft / man3 / gnu_get_libc_version.3
index 44f2cb2..15851f7 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 2010-09-10 "Linux" "Linux Programmer's Manual"
-.\"O .SH NAME
+.\"*******************************************************************
+.\"
+.\" 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 名前
-.\"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
+gnu_get_libc_version, gnu_get_libc_release \- glibc のバージョンと リリース状態を取得する
 .SH 書式
 .nf
-.\"O .BR "#define _GNU_SOURCE" "             /* See feature_test_macros(7) */"
-.BR "#define _GNU_SOURCE" "             /* feature_test_macros(7) 参照 */"
-.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 のバージョンを特定する文字列を返す。
+\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
+\fBgnu_get_libc_release\fP()  関数は、システムで利用可能な glibc バージョンのリリース状態を示す 文字列を返す。
+\fIstable\fP といった文字列が返される。
 .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:
 下記のプログラムを実行すると、次のような出力が得られる。
 .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 プログラムのソース
 \&
 .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)
+\fBconfstr\fP(3)