update from main archive 961217
[glibc.git] / intl / textdomain.c
blob0abf65d752c4520843368049878c3b141e99aa98
1 /* textdomain.c -- implementation of the textdomain(3) function
2 Copyright (C) 1995 Software Foundation, Inc.
4 This file is part of the GNU C Library. Its master source is NOT part of
5 the C library, however. The master source lives in /gd/gnu/lib.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with the GNU C Library; see the file COPYING.LIB. If
19 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
20 Cambridge, MA 02139, USA. */
22 #ifdef HAVE_CONFIG_H
23 # include <config.h>
24 #endif
26 #if defined STDC_HEADERS || defined _LIBC
27 # include <stdlib.h>
28 #endif
30 #if defined STDC_HEADERS || defined HAVE_STRING_H || defined _LIBC
31 # include <string.h>
32 #else
33 # include <strings.h>
34 #endif
36 #ifdef _LIBC
37 # include <libintl.h>
38 #else
39 # include "libgettext.h"
40 #endif
42 /* @@ end of prolog @@ */
44 /* Name of the default text domain. */
45 extern const char _nl_default_default_domain[];
47 /* Default text domain in which entries for gettext(3) are to be found. */
48 extern const char *_nl_current_default_domain;
51 /* Names for the libintl functions are a problem. They must not clash
52 with existing names and they should follow ANSI C. But this source
53 code is also used in GNU C Library where the names have a __
54 prefix. So we have to make a difference here. */
55 #ifdef _LIBC
56 # define TEXTDOMAIN __textdomain
57 #else
58 # define TEXTDOMAIN textdomain__
59 #endif
61 /* Set the current default message catalog to DOMAINNAME.
62 If DOMAINNAME is null, return the current default.
63 If DOMAINNAME is "", reset to the default of "messages". */
64 char *
65 TEXTDOMAIN (domainname)
66 const char *domainname;
68 char *old;
70 /* A NULL pointer requests the current setting. */
71 if (domainname == NULL)
72 return (char *) _nl_current_default_domain;
74 old = (char *) _nl_current_default_domain;
76 /* If domain name is the null string set to default domain "messages". */
77 if (domainname[0] == '\0'
78 || strcmp (domainname, _nl_default_default_domain) == 0)
79 _nl_current_default_domain = _nl_default_default_domain;
80 else
82 /* If the following malloc fails `_nl_current_default_domain'
83 will be NULL. This value will be returned and so signals we
84 are out of core. */
85 size_t len = strlen (domainname) + 1;
86 char *cp = (char *) malloc (len);
87 if (cp != NULL)
88 memcpy (cp, domainname, len);
89 _nl_current_default_domain = cp;
92 if (old != _nl_default_default_domain)
93 free (old);
95 return (char *) _nl_current_default_domain;
98 #ifdef _LIBC
99 /* Alias for function name in GNU C Library. */
100 weak_alias (__textdomain, textdomain);
101 #endif