• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* intl-compat.c - Stub functions to call gettext functions from GNU gettext
2    Library.
3    Copyright (C) 1995, 2000-2003, 2005 Free Software Foundation, Inc.
4 
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU Lesser General Public License as published by
7    the Free Software Foundation; either version 2.1 of the License, or
8    (at your option) any later version.
9 
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU Lesser General Public License for more details.
14 
15    You should have received a copy of the GNU Lesser General Public License
16    along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
17 
18 #ifdef HAVE_CONFIG_H
19 # include <config.h>
20 #endif
21 
22 #include "gettextP.h"
23 
24 /* @@ end of prolog @@ */
25 
26 /* This file redirects the gettext functions (without prefix) to those
27    defined in the included GNU libintl library (with "libintl_" prefix).
28    It is compiled into libintl in order to make the AM_GNU_GETTEXT test
29    of gettext <= 0.11.2 work with the libintl library >= 0.11.3 which
30    has the redirections primarily in the <libintl.h> include file.
31    It is also compiled into libgnuintl so that libgnuintl.so can be used
32    as LD_PRELOADable library on glibc systems, to provide the extra
33    features that the functions in the libc don't have (namely, logging).  */
34 
35 
36 #undef gettext
37 #undef dgettext
38 #undef dcgettext
39 #undef ngettext
40 #undef dngettext
41 #undef dcngettext
42 #undef textdomain
43 #undef bindtextdomain
44 #undef bind_textdomain_codeset
45 
46 
47 /* When building a DLL, we must export some functions.  Note that because
48    the functions are only defined for binary backward compatibility, we
49    don't need to use __declspec(dllimport) in any case.  */
50 #if HAVE_VISIBILITY && BUILDING_DLL
51 # define DLL_EXPORTED __attribute__((__visibility__("default")))
52 #elif defined _MSC_VER && BUILDING_DLL
53 # define DLL_EXPORTED __declspec(dllexport)
54 #else
55 # define DLL_EXPORTED
56 #endif
57 
58 
59 DLL_EXPORTED
60 char *
gettext(const char * msgid)61 gettext (const char *msgid)
62 {
63   return libintl_gettext (msgid);
64 }
65 
66 
67 DLL_EXPORTED
68 char *
dgettext(const char * domainname,const char * msgid)69 dgettext (const char *domainname, const char *msgid)
70 {
71   return libintl_dgettext (domainname, msgid);
72 }
73 
74 
75 DLL_EXPORTED
76 char *
dcgettext(const char * domainname,const char * msgid,int category)77 dcgettext (const char *domainname, const char *msgid, int category)
78 {
79   return libintl_dcgettext (domainname, msgid, category);
80 }
81 
82 
83 DLL_EXPORTED
84 char *
ngettext(const char * msgid1,const char * msgid2,unsigned long int n)85 ngettext (const char *msgid1, const char *msgid2, unsigned long int n)
86 {
87   return libintl_ngettext (msgid1, msgid2, n);
88 }
89 
90 
91 DLL_EXPORTED
92 char *
dngettext(const char * domainname,const char * msgid1,const char * msgid2,unsigned long int n)93 dngettext (const char *domainname,
94            const char *msgid1, const char *msgid2, unsigned long int n)
95 {
96   return libintl_dngettext (domainname, msgid1, msgid2, n);
97 }
98 
99 
100 DLL_EXPORTED
101 char *
dcngettext(const char * domainname,const char * msgid1,const char * msgid2,unsigned long int n,int category)102 dcngettext (const char *domainname,
103             const char *msgid1, const char *msgid2, unsigned long int n,
104             int category)
105 {
106   return libintl_dcngettext (domainname, msgid1, msgid2, n, category);
107 }
108 
109 
110 DLL_EXPORTED
111 char *
textdomain(const char * domainname)112 textdomain (const char *domainname)
113 {
114   return libintl_textdomain (domainname);
115 }
116 
117 
118 DLL_EXPORTED
119 char *
bindtextdomain(const char * domainname,const char * dirname)120 bindtextdomain (const char *domainname, const char *dirname)
121 {
122   return libintl_bindtextdomain (domainname, dirname);
123 }
124 
125 
126 DLL_EXPORTED
127 char *
bind_textdomain_codeset(const char * domainname,const char * codeset)128 bind_textdomain_codeset (const char *domainname, const char *codeset)
129 {
130   return libintl_bind_textdomain_codeset (domainname, codeset);
131 }
132