00001 /* Implementation of the dcngettext(3) function. 00002 Copyright (C) 1995-1999, 2000, 2001 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 "gettextP.h" 00024 #ifdef _LIBC 00025 # include <libintl.h> 00026 #else 00027 # include "libgnuintl.h" 00028 #endif 00029 00030 /* @@ end of prolog @@ */ 00031 00032 /* Names for the libintl functions are a problem. They must not clash 00033 with existing names and they should follow ANSI C. But this source 00034 code is also used in GNU C Library where the names have a __ 00035 prefix. So we have to make a difference here. */ 00036 #ifdef _LIBC 00037 # define DCNGETTEXT __dcngettext 00038 # define DCIGETTEXT __dcigettext 00039 #else 00040 # define DCNGETTEXT dcngettext__ 00041 # define DCIGETTEXT dcigettext__ 00042 #endif 00043 00044 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY 00045 locale. */ 00046 char * 00047 DCNGETTEXT (domainname, msgid1, msgid2, n, category) 00048 const char *domainname; 00049 const char *msgid1; 00050 const char *msgid2; 00051 unsigned long int n; 00052 int category; 00053 { 00054 return DCIGETTEXT (domainname, msgid1, msgid2, 1, n, category); 00055 } 00056 00057 #ifdef _LIBC 00058 /* Alias for function name in GNU C Library. */ 00059 weak_alias (__dcngettext, dcngettext); 00060 #endif