XlationSvc: remove a "'" added in previous spelling commit that causes warnings
[oweals/cde.git] / cde / lib / DtSvc / DtUtil2 / GetMessage.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 libraries 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 /* $XConsortium: GetMessage.c /main/5 1996/06/21 17:22:13 ageorge $ */
24 /*
25  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
26  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
27  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
28  * (c) Copyright 1993, 1994 Novell, Inc.                                *
29  */
30 /*************************************<+>*************************************
31  *****************************************************************************
32  **
33  **   File:         GetMessage.c
34  **
35  **   Project:      DT
36  **
37  **   Description:  This file contains the library source code to get
38  **                 a localized message.
39  **
40  **
41  **   (c) Copyright 1992 by Hewlett-Packard Company
42  **
43  *
44  ****************************************************************************
45  ************************************<+>*************************************/
46
47 #include <stdio.h>
48 #include <nl_types.h>
49 #include "DtSvcLock.h"
50
51 #if !defined(NL_CAT_LOCALE)
52 #define NL_CAT_LOCALE 0
53 #endif
54
55 /*****************************************************************************
56  *
57  * Function: _DtGetMessage
58  *
59  * Parameters:
60  *
61  *   char       *filename -     Filename to open.
62  *
63  *   int        set -           The message catalog set number.
64  *
65  *   int        n -             The message number.
66  *
67  *   char       *s -            The default message if the message is not
68  *                              retrieved from a message catalog.
69  *
70  * Returns: the string for set 'set' and number 'n'.
71  *
72  *****************************************************************************/
73
74 char * 
75 _DtGetMessage(
76         char *filename,
77         int set,
78         int n,
79         char *s )
80 {
81         char *msg;
82         char *lang;
83         nl_catd catopen();
84         char *catgets();
85         static int first = 1;
86         static nl_catd nlmsg_fd;
87
88         _DtSvcProcessLock();
89         if ( first ) 
90         {
91                 first = 0;
92                 nlmsg_fd = catopen(filename, NL_CAT_LOCALE);
93         }
94         msg=catgets(nlmsg_fd,set,n,s);
95         _DtSvcProcessUnlock();
96         return (msg);
97 }