Home
last modified time | relevance | path

Searched refs:msgid2 (Results 1 – 3 of 3) sorted by relevance

/minix3/lib/libintl/
H A Dlibintl.h45 #define npgettext_expr(msgctxt, msgid1, msgid2, n) \ argument
46 npgettext((msgctxt), (msgid1), (msgid2), (n))
48 dnpgettext((domainname), (msgctxt), (msgid1), (msgid2), (n))
49 #define dcnpgettext_expr(domainname, msgctxt, msgid1, msgid2, n, category) \ argument
50 dcnpgettext((domainname), (msgctxt), (msgid1), (msgid2), (n), (category))
H A Dgettext.c104 ngettext(const char *msgid1, const char *msgid2, unsigned long int n) in ngettext() argument
107 return dcngettext(NULL, msgid1, msgid2, n, LC_MESSAGES); in ngettext()
111 dngettext(const char *domainname, const char *msgid1, const char *msgid2, in dngettext() argument
115 return dcngettext(domainname, msgid1, msgid2, n, LC_MESSAGES); in dngettext()
141 npgettext(const char *msgctxt, const char *msgid1, const char *msgid2, in npgettext() argument
145 return pgettext_impl(NULL, msgctxt, msgid1, msgid2, n, LC_MESSAGES); in npgettext()
150 const char *msgid2, unsigned long int n) in dnpgettext() argument
153 return pgettext_impl(domainname, msgctxt, msgid1, msgid2, n, LC_MESSAGES); in dnpgettext()
158 const char *msgid2, unsigned long int n, int category) in dcnpgettext() argument
161 return pgettext_impl(domainname, msgctxt, msgid1, msgid2, n, category); in dcnpgettext()
[all …]
/minix3/external/public-domain/xz/dist/src/common/
H A Dtuklib_gettext.h40 # define ngettext(msgid1, msgid2, n) ((n) == 1 ? (msgid1) : (msgid2)) argument