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

Email客户端

开发平台:

Unix_Linux

  1. /* Implementation of the textdomain(3) function.
  2.    Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
  3.    Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    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
  11.    GNU General Public License for more details.
  12.    You should have received a copy of the GNU General Public License
  13.    along with this program; if not, write to the Free Software Foundation,
  14.    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  15. #ifdef HAVE_CONFIG_H
  16. # include <config.h>
  17. #endif
  18. #if defined STDC_HEADERS || defined _LIBC
  19. # include <stdlib.h>
  20. #endif
  21. #if defined STDC_HEADERS || defined HAVE_STRING_H || defined _LIBC
  22. # include <string.h>
  23. #else
  24. # include <strings.h>
  25. # ifndef memcpy
  26. #  define memcpy(Dst, Src, Num) bcopy (Src, Dst, Num)
  27. # endif
  28. #endif
  29. #ifdef _LIBC
  30. # include <libintl.h>
  31. #else
  32. # include "libgettext.h"
  33. #endif
  34. /* @@ end of prolog @@ */
  35. /* Name of the default text domain.  */
  36. extern const char _nl_default_default_domain[];
  37. /* Default text domain in which entries for gettext(3) are to be found.  */
  38. extern const char *_nl_current_default_domain;
  39. /* Names for the libintl functions are a problem.  They must not clash
  40.    with existing names and they should follow ANSI C.  But this source
  41.    code is also used in GNU C Library where the names have a __
  42.    prefix.  So we have to make a difference here.  */
  43. #ifdef _LIBC
  44. # define TEXTDOMAIN __textdomain
  45. # ifndef strdup
  46. #  define strdup(str) __strdup (str)
  47. # endif
  48. #else
  49. # define TEXTDOMAIN textdomain__
  50. #endif
  51. /* Set the current default message catalog to DOMAINNAME.
  52.    If DOMAINNAME is null, return the current default.
  53.    If DOMAINNAME is "", reset to the default of "messages".  */
  54. char *
  55. TEXTDOMAIN (domainname)
  56.      const char *domainname;
  57. {
  58.   char *old;
  59.   /* A NULL pointer requests the current setting.  */
  60.   if (domainname == NULL)
  61.     return (char *) _nl_current_default_domain;
  62.   old = (char *) _nl_current_default_domain;
  63.   /* If domain name is the null string set to default domain "messages".  */
  64.   if (domainname[0] == ''
  65.       || strcmp (domainname, _nl_default_default_domain) == 0)
  66.     _nl_current_default_domain = _nl_default_default_domain;
  67.   else
  68.     {
  69.       /* If the following malloc fails `_nl_current_default_domain'
  70.  will be NULL.  This value will be returned and so signals we
  71.  are out of core.  */
  72. #if defined _LIBC || defined HAVE_STRDUP
  73.       _nl_current_default_domain = strdup (domainname);
  74. #else
  75.       size_t len = strlen (domainname) + 1;
  76.       char *cp = (char *) malloc (len);
  77.       if (cp != NULL)
  78. memcpy (cp, domainname, len);
  79.       _nl_current_default_domain = cp;
  80. #endif
  81.     }
  82.   if (old != _nl_default_default_domain)
  83.     free (old);
  84.   return (char *) _nl_current_default_domain;
  85. }
  86. #ifdef _LIBC
  87. /* Alias for function name in GNU C Library.  */
  88. weak_alias (__textdomain, textdomain);
  89. #endif