Back to Evolution Project page
00001 /* Implementation of the dgettext(3) function 00002 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. 00003 00004 This program is free software; you can redistribute it and/or modify 00005 it under the terms of the GNU General Public License as published by 00006 the Free Software Foundation; either version 2, or (at your option) 00007 any later version. 00008 00009 This program is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 GNU General Public License for more details. 00013 00014 You should have received a copy of the GNU General Public License 00015 along with this program; if not, write to the Free Software Foundation, 00016 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 00017 00018 #ifdef HAVE_CONFIG_H 00019 # include <config.h> 00020 #endif 00021 00022 #if defined HAVE_LOCALE_H || defined _LIBC 00023 # include <locale.h> 00024 #endif 00025 00026 #ifdef _LIBC 00027 # include <libintl.h> 00028 #else 00029 # include "libgettext.h" 00030 #endif 00031 00032 /* @@ end of prolog @@ */ 00033 00034 /* Names for the libintl functions are a problem. They must not clash 00035 with existing names and they should follow ANSI C. But this source 00036 code is also used in GNU C Library where the names have a __ 00037 prefix. So we have to make a difference here. */ 00038 #ifdef _LIBC 00039 # define DGETTEXT __dgettext 00040 # define DCGETTEXT __dcgettext 00041 #else 00042 # define DGETTEXT dgettext__ 00043 # define DCGETTEXT dcgettext__ 00044 #endif 00045 00046 /* Look up MSGID in the DOMAINNAME message catalog of the current 00047 LC_MESSAGES locale. */ 00048 char * 00049 DGETTEXT (domainname, msgid) 00050 const char *domainname; 00051 const char *msgid; 00052 { 00053 return DCGETTEXT (domainname, msgid, LC_MESSAGES); 00054 } 00055 00056 #ifdef _LIBC 00057 /* Alias for function name in GNU C Library. */ 00058 weak_alias (__dgettext, dgettext); 00059 #endif