OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man3 / gnu_get_libc_version.3
1 .\" Copyright (c) 2008, Linux Foundation, written by Michael Kerrisk
2 .\"     <mtk.manpages@gmail.com>
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" %%%LICENSE_END
25 .\"
26 .TH GNU_GET_LIBC_VERSION 3 2012-08-26 "Linux" "Linux Programmer's Manual"
27 .SH NAME
28 gnu_get_libc_version, gnu_get_libc_release \- get glibc version and release
29 .SH SYNOPSIS
30 .nf
31 .B #include <gnu/libc-version.h>
32
33 .B const char *gnu_get_libc_version(void);
34 .B const char *gnu_get_libc_release(void);
35 .fi
36 .SH DESCRIPTION
37 The function
38 .BR gnu_get_libc_version ()
39 returns a string that identifies the glibc version available on the system.
40
41 The function
42 .BR gnu_get_libc_release ()
43 returns a string indicates the release status of the glibc version
44 available on the system.
45 This will be a string such as
46 .IR "stable" .
47 .SH VERSIONS
48 These functions first appeared in glibc in version 2.1.
49 .SH CONFORMING TO
50 These functions are glibc-specific.
51 .SH EXAMPLE
52 When run, the program below will produce output such as the following:
53 .in +4n
54 .nf
55
56 .RB "$" " ./a.out"
57 GNU libc version: 2.8
58 GNU libc release: stable
59 .fi
60 .in
61 .SS Program source
62 \&
63 .nf
64 #include <gnu/libc-version.h>
65 #include <stdlib.h>
66 #include <stdio.h>
67
68 int
69 main(int argc, char *argv[])
70 {
71     printf("GNU libc version: %s\\n", gnu_get_libc_version());
72     printf("GNU libc release: %s\\n", gnu_get_libc_release());
73     exit(EXIT_SUCCESS);
74 }
75 .fi
76 .SH SEE ALSO
77 .BR confstr (3)
78 .SH COLOPHON
79 This page is part of release 3.68 of the Linux
80 .I man-pages
81 project.
82 A description of the project,
83 information about reporting bugs,
84 and the latest version of this page,
85 can be found at
86 \%http://www.kernel.org/doc/man\-pages/.