63 lines
1.3 KiB
Groff
63 lines
1.3 KiB
Groff
.\" $NetBSD: catgets.3,v 1.8 1998/02/08 19:54:54 kleink Exp $
|
|
.\"
|
|
.\" Written by J.T. Conklin <jtc@netbsd.org>.
|
|
.\" Public domain.
|
|
.\"
|
|
.Dd February 8, 1998
|
|
.Dt CATGETS 3
|
|
.Os
|
|
.Sh NAME
|
|
.Nm catgets
|
|
.Nd retrieve string from message catalog
|
|
.Sh LIBRARY
|
|
.Lb libc
|
|
.Sh SYNOPSIS
|
|
.Fd #include <nl_types.h>
|
|
.Ft char *
|
|
.Fn catgets "nl_catd catd" "int set_id" "int msg_id" "const char *s"
|
|
.Sh DESCRIPTION
|
|
The
|
|
.Fn catgets
|
|
function attempts to retrieve message
|
|
.Fa msg_id
|
|
of set
|
|
.Fa set_id
|
|
from the message catalog referenced by the descriptor
|
|
.Fa catd .
|
|
The argument
|
|
.Fa s
|
|
points to a default message which is returned if the function
|
|
is unable to retrieve the specified message.
|
|
.Sh RETURN VALUE
|
|
If the specified message was retrieved successfully,
|
|
.Fn catgets
|
|
returns a pointer to an internal buffer containing the message string;
|
|
otherwise it returns
|
|
.Fa s .
|
|
.Sh ERRORS
|
|
The
|
|
.Fn catgets
|
|
function will fail if:
|
|
.Bl -tag -width Er
|
|
.It Bq Er EBADF
|
|
The
|
|
.Fa catd
|
|
argument is not a valid message catalog descriptor open for reading.
|
|
.It Bq Er EINTR
|
|
The operation was interrupted by a signal.
|
|
.It Bq Er ENOMSG
|
|
The message identified by
|
|
.Fa set_id
|
|
and
|
|
.Fa msg_id
|
|
is not in the message catalog.
|
|
.El
|
|
.Sh SEE ALSO
|
|
.Xr catclose 3 ,
|
|
.Xr catopen 3
|
|
.Sh STANDARDS
|
|
The
|
|
.Fn catgets
|
|
function conforms to
|
|
.St -xpg4.2 .
|