OSDN Git Service

49595265164da58f8d864b8f80421192342f3961
[linuxjm/LDP_man-pages.git] / original / man3 / catgets.3
1 .\" Copyright 1993 Mitchum DSouza <m.dsouza@mrc-applied-psychology.cambridge.ac.uk>
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" Updated, aeb, 980809
26 .TH CATGETS 3 2013-06-21 "" "Linux Programmer's Manual"
27 .SH NAME
28 catgets \- get message from a message catalog
29 .SH SYNOPSIS
30 .nf
31 .B #include <nl_types.h>
32
33 .BI "char *catgets(nl_catd " catalog ", int " set_number \
34 ", int " message_number ,
35 .BI "              const char *" message );
36 .fi
37 .SH DESCRIPTION
38 .BR catgets ()
39 reads the message
40 .IR message_number ,
41 in set
42 .IR set_number ,
43 from the message catalog identified by
44 .IR catalog ,
45 where
46 .I catalog
47 is a catalog descriptor returned from an earlier call to
48 .BR catopen (3).
49 The fourth argument,
50 .IR message ,
51 points to a default message string which will be returned by
52 .BR catgets ()
53 if the identified message catalog is not currently available.
54 The
55 message-text is contained in an internal buffer area and should be copied by
56 the application if it is to be saved or modified.
57 The return string is
58 always terminated with a null byte (\(aq\\0\(aq).
59 .SH RETURN VALUE
60 .LP
61 On success,
62 .BR catgets ()
63 returns a pointer to an internal buffer area
64 containing the null-terminated message string.
65 On failure,
66 .BR catgets ()
67 returns the value
68 .IR message .
69 .SH CONFORMING TO
70 POSIX.1-2001.
71 .SH NOTES
72 These functions are available only in libc.so.4.4.4c and above.
73 The Jan 1987 X/Open Portability Guide specifies a more subtle
74 error return:
75 .I message
76 is returned if the message catalog specified by
77 .I catalog
78 is not available, while an empty string is returned
79 when the message catalog is available but does not contain
80 the specified message.
81 These two possible error returns seem to be discarded in SUSv2
82 in favor of always returning
83 .IR message .
84 .SH SEE ALSO
85 .BR catopen (3),
86 .BR setlocale (3)
87 .SH COLOPHON
88 This page is part of release 3.67 of the Linux
89 .I man-pages
90 project.
91 A description of the project,
92 information about reporting bugs,
93 and the latest version of this page,
94 can be found at
95 \%http://www.kernel.org/doc/man\-pages/.