diff options
Diffstat (limited to 'intl/libintl.h')
-rw-r--r-- | intl/libintl.h | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/intl/libintl.h b/intl/libintl.h index 10c3726b7c..5ac716b75c 100644 --- a/intl/libintl.h +++ b/intl/libintl.h @@ -1,6 +1,5 @@ /* Message catalogs for internationalization. - Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. - Contributed by Ulrich Drepper <drepper@cygnus.com>, 1995. + Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc. This file is derived from the file libgettext.h in the GNU gettext package. This file is part of the GNU C Library. Its master source is NOT part of @@ -52,6 +51,23 @@ extern char *__dcgettext (__const char *__domainname, __const char *__msgid, int __category) __THROW; +/* Similar to `gettext' but select the plural form corresponding to the + number N. */ +extern char *ngettext (__const char *__msgid1, __const char *__msgid2, + unsigned long int __n) __THROW; + +/* Similar to `dgettext' but select the plural form corresponding to the + number N. */ +extern char *dngettext (__const char *__domainname, __const char *__msgid1, + __const char *__msgid2, unsigned long int __n) __THROW; + +/* Similar to `dxgettext' but select the plural form corresponding to the + number N. */ +extern char *dcngettext (__const char *__domainname, __const char *__msgid1, + __const char *__msgid2, unsigned long int __n, + int __category) __THROW; + + /* Set the current default message catalog to DOMAINNAME. If DOMAINNAME is null, return the current default. If DOMAINNAME is "", reset to the default of "messages". */ @@ -82,6 +98,11 @@ extern char *bindtextdomain (__const char *__domainname, # define dgettext(domainname, msgid) \ dcgettext (domainname, msgid, LC_MESSAGES) +# define ngettext(msgid, n) dngettext (NULL, msgid, n) + +# define dngettext(domainname, msgid, n) \ + dcngettext (domainname, msgid, n, LC_MESSAGES) + #endif /* Optimizing. */ __END_DECLS |