Build with debug symbols enabled.
[oweals/cde.git] / cde / lib / DtSvc / DtUtil2 / DtGetMessage.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $TOG: DtGetMessage.c /main/10 1998/07/30 12:12:25 mgreess $ */
24 /*
25  * (c) Copyright 1995 Digital Equipment Corporation.
26  * (c) Copyright 1993, 1994, 1995 Hewlett-Packard Company
27  * (c) Copyright 1993, 1994, 1995 International Business Machines Corp.
28  * (c) Copyright 1993, 1994, 1995 Sun Microsystems, Inc.
29  * (c) Copyright 1993, 1994, 1995 Novell, Inc. 
30  * (c) Copyright 1995 FUJITSU LIMITED.
31  * (c) Copyright 1995 Hitachi.
32  */
33 /******************************************************************************
34  *
35  * File Name: DtGetMessage.c
36  *
37  *  Contains the function for getting localized strings.
38  *
39  *****************************************************************************/
40
41 #ifndef NO_MESSAGE_CATALOG
42 #include <stdio.h>
43 #include <string.h>
44 #include <nl_types.h>
45 #include "DtSvcLock.h"
46
47 /*****************************************************************************
48  *
49  * Function: Dt11GetMessage
50  *
51  * Parameters:
52  *
53  *   char       *filename -     Filename to open.
54  *
55  *   int        set -           The message catalog set number.
56  *
57  *   int        n -             The message number.
58  *
59  *   char       *s -            The default message if the message is not
60  *                              retrieved from a message catalog.
61  *
62  * Returns: the string for set 'set' and number 'n'.
63  *
64  *****************************************************************************/
65
66 char *
67 Dt11GetMessage(
68         char *filename,
69         int set,
70         int n,
71         char *s)
72 {
73         char *msg;
74         static int first = 1;
75         static nl_catd nlmsg_fd;
76         static char *nlmsg_filename = NULL;
77
78         _DtSvcProcessLock();
79         if ( NULL == nlmsg_filename || 0 != strcmp(nlmsg_filename, filename) )
80         {
81                 nlmsg_fd = catopen(filename, NL_CAT_LOCALE);
82                 if (nlmsg_filename)
83                 {
84                     free(nlmsg_filename);
85                     nlmsg_filename = NULL;
86                 }
87                 nlmsg_filename = strdup(filename);
88         }
89         msg=catgets(nlmsg_fd,set,n,s);
90         _DtSvcProcessUnlock();
91         return (msg);
92 }
93 #endif