1 /* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
2 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
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. */
31 /* On some strange systems still no definition of NULL is found. Sigh! */
33 # if defined __STDC__ && __STDC__
34 # define NULL ((void *) 0)
40 /* @@ end of prolog @@ */
43 _nl_explode_name (name
, language
, modifier
, territory
, codeset
,
44 normalized_codeset
, special
, sponsor
, revision
)
46 const char **language
;
47 const char **modifier
;
48 const char **territory
;
50 const char **normalized_codeset
;
53 const char **revision
;
55 enum { undecided
, xpg
, cen
} syntax
;
62 *normalized_codeset
= NULL
;
67 /* Now we determine the single parts of the locale name. First
68 look for the language. Termination symbols are `_' and `@' if
69 we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */
72 *language
= cp
= name
;
73 while (cp
[0] != '\0' && cp
[0] != '_' && cp
[0] != '@'
74 && cp
[0] != '+' && cp
[0] != ',')
78 /* This does not make sense: language has to be specified. Use
79 this entry as it is without exploding. Perhaps it is an alias. */
80 cp
= strchr (*language
, '\0');
81 else if (cp
[0] == '_')
83 /* Next is the territory. */
87 while (cp
[0] != '\0' && cp
[0] != '.' && cp
[0] != '@'
88 && cp
[0] != '+' && cp
[0] != ',' && cp
[0] != '_')
95 /* Next is the codeset. */
100 while (cp
[0] != '\0' && cp
[0] != '@')
105 if (*codeset
!= cp
&& (*codeset
)[0] != '\0')
107 *normalized_codeset
= _nl_normalize_codeset (*codeset
,
109 if (strcmp (*codeset
, *normalized_codeset
) == 0)
110 free ((char *) *normalized_codeset
);
112 mask
|= XPG_NORM_CODESET
;
117 if (cp
[0] == '@' || (syntax
!= xpg
&& cp
[0] == '+'))
119 /* Next is the modifier. */
120 syntax
= cp
[0] == '@' ? xpg
: cen
;
124 while (syntax
== cen
&& cp
[0] != '\0' && cp
[0] != '+'
125 && cp
[0] != ',' && cp
[0] != '_')
128 mask
|= XPG_MODIFIER
| CEN_AUDIENCE
;
131 if (syntax
!= xpg
&& (cp
[0] == '+' || cp
[0] == ',' || cp
[0] == '_'))
137 /* Next is special application (CEN syntax). */
141 while (cp
[0] != '\0' && cp
[0] != ',' && cp
[0] != '_')
149 /* Next is sponsor (CEN syntax). */
153 while (cp
[0] != '\0' && cp
[0] != '_')
161 /* Next is revision (CEN syntax). */
165 mask
|= CEN_REVISION
;
169 /* For CEN sytnax values it might be important to have the
170 separator character in the file name, not for XPG syntax. */
173 if (*territory
!= NULL
&& (*territory
)[0] == '\0')
176 if (*codeset
!= NULL
&& (*codeset
)[0] == '\0')
177 mask
&= ~XPG_CODESET
;
179 if (*modifier
!= NULL
&& (*modifier
)[0] == '\0')
180 mask
&= ~XPG_MODIFIER
;