00001 /* Implementation of the dngettext(3) function. 00002 Copyright (C) 1995-1997, 2000, 2001, 2002 Free Software Foundation, Inc. 00003 00004 This program is free software; you can redistribute it and/or modify it 00005 under the terms of the GNU Library General Public License as published 00006 by 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 GNU 00012 Library General Public License for more details. 00013 00014 You should have received a copy of the GNU Library General Public 00015 License along with this program; if not, write to the Free Software 00016 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 00017 USA. */ 00018 00019 #ifdef HAVE_CONFIG_H 00020 # include <config.h> 00021 #endif 00022 00023 #include <locale.h> 00024 00025 #include "gettextP.h" 00026 #ifdef _LIBC 00027 # include <libintl.h> 00028 #else 00029 # include "libgnuintl.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 DNGETTEXT __dngettext 00040 # define DCNGETTEXT INTUSE(__dcngettext) 00041 #else 00042 # define DNGETTEXT libintl_dngettext 00043 # define DCNGETTEXT libintl_dcngettext 00044 #endif 00045 00046 /* Look up MSGID in the DOMAINNAME message catalog of the current 00047 LC_MESSAGES locale and skip message according to the plural form. */ 00048 char * 00049 DNGETTEXT (domainname, msgid1, msgid2, n) 00050 const char *domainname; 00051 const char *msgid1; 00052 const char *msgid2; 00053 unsigned long int n; 00054 { 00055 return DCNGETTEXT (domainname, msgid1, msgid2, n, LC_MESSAGES); 00056 } 00057 00058 #ifdef _LIBC 00059 /* Alias for function name in GNU C Library. */ 00060 weak_alias (__dngettext, dngettext); 00061 #endif