/* Header describing internals of libintl library. Copyright (C) 1995-1999, 2000, 2001 Free Software Foundation, Inc. Written by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _GETTEXTP_H #define _GETTEXTP_H #include /* Get size_t. */ #include "util/string.h" /* Get possible stubs. */ #ifdef HAVE_ICONV #include #endif #include "intl/gettext/loadinfo.h" #include "intl/gettext/gettext.h" /* Get nls_uint32. */ #ifdef __cplusplus extern "C" { #endif #ifndef W #define W(flag, data) ((flag) ? SWAP (data) : (data)) #endif static inline nls_uint32 SWAP(nls_uint32 i) { return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24); } enum operator_ { /* Without arguments: */ var, /* The variable "n". */ num, /* Decimal number. */ /* Unary operators: */ lnot, /* Logical NOT. */ /* Binary operators: */ mult, /* Multiplication. */ divide, /* Division. */ module, /* Module operation. */ plus, /* Addition. */ minus, /* Subtraction. */ less_than, /* Comparison. */ greater_than, /* Comparison. */ less_or_equal, /* Comparison. */ greater_or_equal, /* Comparison. */ equal, /* Comparision for equality. */ not_equal, /* Comparision for inequality. */ land, /* Logical AND. */ lor, /* Logical OR. */ /* Ternary operators: */ qmop /* Question mark operator. */ }; /* This is the representation of the expressions to determine the plural form. */ struct expression { int nargs; /* Number of arguments. */ enum operator_ operation; union { unsigned long int num; /* Number value for `num'. */ struct expression *args[3]; /* Up to three arguments. */ } val; }; /* This is the data structure to pass information to the parser and get the result in a thread-safe way. */ struct parse_args { const char *cp; struct expression *res; }; /* The representation of an opened message catalog. */ struct loaded_domain { const char *data; int use_mmap; size_t mmap_size; int must_swap; nls_uint32 nstrings; struct string_desc *orig_tab; struct string_desc *trans_tab; nls_uint32 hash_size; nls_uint32 *hash_tab; int codeset_cntr; #if HAVE_ICONV iconv_t conv; #endif char **conv_tab; struct expression *plural; unsigned long int nplurals; }; /* A set of settings bound to a message domain. Used to store settings from bindtextdomain() and bind_textdomain_codeset(). */ struct binding { struct binding *next; char *dirname; int codeset_cntr; /* Incremented each time codeset changes. */ char *codeset; char domainname[1]; }; extern char *LANGUAGE; /* A counter which is incremented each time some previous translations become invalid. This variable is part of the external ABI of the GNU libintl. */ extern int _nl_msg_cat_cntr; struct loaded_l10nfile *_nl_find_domain(const char *__dirname, char *__locale, const char *__domainname, struct binding * __domainbinding); void _nl_load_domain(struct loaded_l10nfile * __domain, struct binding * __domainbinding); void _nl_unload_domain(struct loaded_domain * __domain); const char *_nl_init_domain_conv(struct loaded_l10nfile * __domain_file, struct loaded_domain * __domain, struct binding * __domainbinding); void _nl_free_domain_conv(struct loaded_domain * __domain); char *_nl_find_msg(struct loaded_l10nfile * domain_file, struct binding * domainbinding, const char *msgid, size_t * lengthp); extern char *gettext__(const char *__msgid); extern char *dgettext__(const char *__domainname, const char *__msgid); extern char *dcgettext__(const char *__domainname, const char *__msgid, int __category); extern char *ngettext__(const char *__msgid1, const char *__msgid2, unsigned long int __n); extern char *dngettext__(const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n); extern char *dcngettext__(const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category); extern char *dcigettext__(const char *__domainname, const char *__msgid1, const char *__msgid2, int __plural, unsigned long int __n, int __category); extern char *textdomain__(const char *__domainname); extern char *bindtextdomain__(const char *__domainname, const char *__dirname); extern char *bind_textdomain_codeset__(const char *__domainname, const char *__codeset); extern void gettext_free_exp__(struct expression * exp); extern int gettext__parse(struct parse_args *arg); #ifdef __cplusplus } #endif #endif /* gettextP.h */