summaryrefslogtreecommitdiff
path: root/man3/catgets.3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2005-10-19 07:07:02 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2005-10-19 07:07:02 +0000
commit63aa9df02fee88a559822c460ab5a30f1d8414ee (patch)
treefedc607745a57e06a1a541feca62e18d51523ddb /man3/catgets.3
parente511ffb6bcaa9a584412a95e602435827e302033 (diff)
Automated unformatting of parentheses using unformat_parens.sh
Diffstat (limited to 'man3/catgets.3')
-rw-r--r--man3/catgets.38
1 files changed, 4 insertions, 4 deletions
diff --git a/man3/catgets.3 b/man3/catgets.3
index b4d0052c..caa28878 100644
--- a/man3/catgets.3
+++ b/man3/catgets.3
@@ -35,7 +35,7 @@ catgets \- get message from a message catalog
.BI "char *catgets(nl_catd " catalog ", int " set_number ,
.BI "int " message_number ", const char *" message );
.SH DESCRIPTION
-.B catgets()
+.BR catgets ()
reads the message
.IR message_number ,
in set
@@ -49,7 +49,7 @@ is a catalog descriptor returned from an earlier call to
The fourth argument
.I message
points to a default message string which will be returned by
-.B catgets()
+.BR catgets ()
if the identified message catalog is not currently available. The
message-text is contained in an internal buffer area and should be copied by
the application if it is to be saved or modified. The return string is
@@ -57,11 +57,11 @@ always terminated with a null byte.
.SH "RETURN VALUE"
.LP
On success,
-.B catgets()
+.BR catgets ()
returns a pointer to an internal buffer area
containing the null-terminated message string.
On failure,
-.B catgets()
+.BR catgets ()
returns the value
.IR message .
.SH NOTES