]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/catgets.3
wmemcpy.3: Reformat thread-safety information
[thirdparty/man-pages.git] / man3 / catgets.3
CommitLineData
fea681da
MK
1.\" Copyright 1993 Mitchum DSouza <m.dsouza@mrc-applied-psychology.cambridge.ac.uk>
2.\"
93015253 3.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
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.
c13182ef 12.\"
fea681da
MK
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.
c13182ef 20.\"
fea681da
MK
21.\" Formatted or processed versions of this manual, if unaccompanied by
22.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 23.\" %%%LICENSE_END
fea681da
MK
24.\"
25.\" Updated, aeb, 980809
ad5b45ab 26.TH CATGETS 3 2014-06-13 "" "Linux Programmer's Manual"
fea681da
MK
27.SH NAME
28catgets \- get message from a message catalog
29.SH SYNOPSIS
fea681da 30.nf
b9f02710
MK
31.B #include <nl_types.h>
32
33.BI "char *catgets(nl_catd " catalog ", int " set_number \
c13182ef 34", int " message_number ,
b9f02710 35.BI " const char *" message );
fea681da 36.fi
fea681da 37.SH DESCRIPTION
63aa9df0 38.BR catgets ()
fea681da
MK
39reads the message
40.IR message_number ,
41in set
42.IR set_number ,
43from the message catalog identified by
44.IR catalog ,
45where
46.I catalog
47is a catalog descriptor returned from an earlier call to
48.BR catopen (3).
e357a0a4
MK
49The fourth argument,
50.IR message ,
fea681da 51points to a default message string which will be returned by
63aa9df0 52.BR catgets ()
c13182ef
MK
53if the identified message catalog is not currently available.
54The
fea681da 55message-text is contained in an internal buffer area and should be copied by
c13182ef
MK
56the application if it is to be saved or modified.
57The return string is
1aff5804 58always terminated with a null byte (\(aq\\0\(aq).
47297adb 59.SH RETURN VALUE
fea681da
MK
60.LP
61On success,
63aa9df0 62.BR catgets ()
fea681da
MK
63returns a pointer to an internal buffer area
64containing the null-terminated message string.
65On failure,
63aa9df0 66.BR catgets ()
fea681da
MK
67returns the value
68.IR message .
8114fa14
PH
69.SH ATTRIBUTES
70.SS Multithreading (see pthreads(7))
71The
72.BR catgets ()
73function is thread-safe.
47297adb 74.SH CONFORMING TO
2b2581ee 75POSIX.1-2001.
fea681da 76.SH NOTES
f4dc1f56
MK
77The
78.BR catgets ()
79function is available only in libc.so.4.4.4c and above.
fea681da
MK
80The Jan 1987 X/Open Portability Guide specifies a more subtle
81error return:
82.I message
83is returned if the message catalog specified by
84.I catalog
85is not available, while an empty string is returned
86when the message catalog is available but does not contain
87the specified message.
68e1685c 88These two possible error returns seem to be discarded in SUSv2
d9bfdb9c 89in favor of always returning
fea681da 90.IR message .
47297adb 91.SH SEE ALSO
fea681da
MK
92.BR catopen (3),
93.BR setlocale (3)