gettext.c
上传用户:xxcykj
上传日期:2007-01-04
资源大小:727k
文件大小:2k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. /* Implementation of gettext(3) function.
  2.    Copyright (C) 1995, 1997 Free Software Foundation, Inc.
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2, or (at your option)
  6.    any later version.
  7.    This program is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.    GNU General Public License for more details.
  11.    You should have received a copy of the GNU General Public License
  12.    along with this program; if not, write to the Free Software Foundation,
  13.    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  14. #ifdef HAVE_CONFIG_H
  15. # include <config.h>
  16. #endif
  17. #ifdef _LIBC
  18. # define __need_NULL
  19. # include <stddef.h>
  20. #else
  21. # ifdef STDC_HEADERS
  22. #  include <stdlib.h> /* Just for NULL.  */
  23. # else
  24. #  ifdef HAVE_STRING_H
  25. #   include <string.h>
  26. #  else
  27. #   define NULL ((void *) 0)
  28. #  endif
  29. # endif
  30. #endif
  31. #ifdef _LIBC
  32. # include <libintl.h>
  33. #else
  34. # include "libgettext.h"
  35. #endif
  36. /* @@ end of prolog @@ */
  37. /* Names for the libintl functions are a problem.  They must not clash
  38.    with existing names and they should follow ANSI C.  But this source
  39.    code is also used in GNU C Library where the names have a __
  40.    prefix.  So we have to make a difference here.  */
  41. #ifdef _LIBC
  42. # define GETTEXT __gettext
  43. # define DGETTEXT __dgettext
  44. #else
  45. # define GETTEXT gettext__
  46. # define DGETTEXT dgettext__
  47. #endif
  48. /* Look up MSGID in the current default message catalog for the current
  49.    LC_MESSAGES locale.  If not found, returns MSGID itself (the default
  50.    text).  */
  51. char *
  52. GETTEXT (msgid)
  53.      const char *msgid;
  54. {
  55.   return DGETTEXT (NULL, msgid);
  56. }
  57. #ifdef _LIBC
  58. /* Alias for function name in GNU C Library.  */
  59. weak_alias (__gettext, gettext);
  60. #endif