plural-exp.h
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:4k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. /* Expression parsing and evaluation for plural form selection.
  2.    Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
  3.    Written by Ulrich Drepper <drepper@cygnus.com>, 2000.
  4.    This program is free software; you can redistribute it and/or modify it
  5.    under the terms of the GNU Library General Public License as published
  6.    by the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    You should have received a copy of the GNU Library General Public
  13.    License along with this program; if not, write to the Free Software
  14.    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  15.    USA.  */
  16. #ifndef _PLURAL_EXP_H
  17. #define _PLURAL_EXP_H
  18. #ifndef PARAMS
  19. # if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES
  20. #  define PARAMS(args) args
  21. # else
  22. #  define PARAMS(args) ()
  23. # endif
  24. #endif
  25. #ifndef internal_function
  26. # define internal_function
  27. #endif
  28. #ifndef attribute_hidden
  29. # define attribute_hidden
  30. #endif
  31. /* This is the representation of the expressions to determine the
  32.    plural form.  */
  33. struct expression
  34. {
  35.   int nargs; /* Number of arguments.  */
  36.   enum operator
  37.   {
  38.     /* Without arguments:  */
  39.     var, /* The variable "n".  */
  40.     num, /* Decimal number.  */
  41.     /* Unary operators:  */
  42.     lnot, /* Logical NOT.  */
  43.     /* Binary operators:  */
  44.     mult, /* Multiplication.  */
  45.     divide, /* Division.  */
  46.     module, /* Modulo operation.  */
  47.     plus, /* Addition.  */
  48.     minus, /* Subtraction.  */
  49.     less_than, /* Comparison.  */
  50.     greater_than, /* Comparison.  */
  51.     less_or_equal, /* Comparison.  */
  52.     greater_or_equal, /* Comparison.  */
  53.     equal, /* Comparison for equality.  */
  54.     not_equal, /* Comparison for inequality.  */
  55.     land, /* Logical AND.  */
  56.     lor, /* Logical OR.  */
  57.     /* Ternary operators:  */
  58.     qmop /* Question mark operator.  */
  59.   } operation;
  60.   union
  61.   {
  62.     unsigned long int num; /* Number value for `num'.  */
  63.     struct expression *args[3]; /* Up to three arguments.  */
  64.   } val;
  65. };
  66. /* This is the data structure to pass information to the parser and get
  67.    the result in a thread-safe way.  */
  68. struct parse_args
  69. {
  70.   const char *cp;
  71.   struct expression *res;
  72. };
  73. /* Names for the libintl functions are a problem.  This source code is used
  74.    1. in the GNU C Library library,
  75.    2. in the GNU libintl library,
  76.    3. in the GNU gettext tools.
  77.    The function names in each situation must be different, to allow for
  78.    binary incompatible changes in 'struct expression'.  Furthermore,
  79.    1. in the GNU C Library library, the names have a __ prefix,
  80.    2.+3. in the GNU libintl library and in the GNU gettext tools, the names
  81.          must follow ANSI C and not start with __.
  82.    So we have to distinguish the three cases.  */
  83. #ifdef _LIBC
  84. # define FREE_EXPRESSION __gettext_free_exp
  85. # define PLURAL_PARSE __gettextparse
  86. # define GERMANIC_PLURAL __gettext_germanic_plural
  87. # define EXTRACT_PLURAL_EXPRESSION __gettext_extract_plural
  88. #elif defined (IN_LIBINTL)
  89. # define FREE_EXPRESSION libintl_gettext_free_exp
  90. # define PLURAL_PARSE libintl_gettextparse
  91. # define GERMANIC_PLURAL libintl_gettext_germanic_plural
  92. # define EXTRACT_PLURAL_EXPRESSION libintl_gettext_extract_plural
  93. #else
  94. # define FREE_EXPRESSION free_plural_expression
  95. # define PLURAL_PARSE parse_plural_expression
  96. # define GERMANIC_PLURAL germanic_plural
  97. # define EXTRACT_PLURAL_EXPRESSION extract_plural_expression
  98. #endif
  99. extern void FREE_EXPRESSION PARAMS ((struct expression *exp))
  100.      internal_function;
  101. extern int PLURAL_PARSE PARAMS ((void *arg));
  102. extern struct expression GERMANIC_PLURAL attribute_hidden;
  103. extern void EXTRACT_PLURAL_EXPRESSION PARAMS ((const char *nullentry,
  104.        struct expression **pluralp,
  105.        unsigned long int *npluralsp))
  106.      internal_function;
  107. #if !defined (_LIBC) && !defined (IN_LIBINTL)
  108. extern unsigned long int plural_eval PARAMS ((struct expression *pexp,
  109.       unsigned long int n));
  110. #endif
  111. #endif /* _PLURAL_EXP_H */