1 /* intl-compat.c - Stub functions to call gettext functions from GNU gettext
3 Copyright (C) 1995 Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
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 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 #include "libgettext.h"
25 /* @@ end of prolog @@ */
36 bindtextdomain (domainname
, dirname
)
37 const char *domainname
;
40 return bindtextdomain__ (domainname
, dirname
);
45 dcgettext (domainname
, msgid
, category
)
46 const char *domainname
;
50 return dcgettext__ (domainname
, msgid
, category
);
55 dgettext (domainname
, msgid
)
56 const char *domainname
;
59 return dgettext__ (domainname
, msgid
);
67 return gettext__ (msgid
);
72 textdomain (domainname
)
73 const char *domainname
;
75 return textdomain__ (domainname
);