1 /* Copyright (C) 1995, 1996, 1997 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 not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
28 #include <sys/types.h>
32 /* On some strange systems still no definition of NULL is found. Sigh! */
34 # if defined __STDC__ && __STDC__
35 # define NULL ((void *) 0)
41 /* @@ end of prolog @@ */
44 _nl_explode_name (name
, language
, modifier
, territory
, codeset
,
45 normalized_codeset
, special
, sponsor
, revision
)
47 const char **language
;
48 const char **modifier
;
49 const char **territory
;
51 const char **normalized_codeset
;
54 const char **revision
;
56 enum { undecided
, xpg
, cen
} syntax
;
63 *normalized_codeset
= NULL
;
68 /* Now we determine the single parts of the locale name. First
69 look for the language. Termination symbols are `_' and `@' if
70 we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */
73 *language
= cp
= name
;
74 while (cp
[0] != '\0' && cp
[0] != '_' && cp
[0] != '@'
75 && cp
[0] != '+' && cp
[0] != ',')
79 /* This does not make sense: language has to be specified. Use
80 this entry as it is without exploding. Perhaps it is an alias. */
81 cp
= strchr (*language
, '\0');
82 else if (cp
[0] == '_')
84 /* Next is the territory. */
88 while (cp
[0] != '\0' && cp
[0] != '.' && cp
[0] != '@'
89 && cp
[0] != '+' && cp
[0] != ',' && cp
[0] != '_')
96 /* Next is the codeset. */
101 while (cp
[0] != '\0' && cp
[0] != '@')
106 if (*codeset
!= cp
&& (*codeset
)[0] != '\0')
108 *normalized_codeset
= _nl_normalize_codeset (*codeset
,
110 if (strcmp (*codeset
, *normalized_codeset
) == 0)
111 free ((char *) *normalized_codeset
);
113 mask
|= XPG_NORM_CODESET
;
118 if (cp
[0] == '@' || (syntax
!= xpg
&& cp
[0] == '+'))
120 /* Next is the modifier. */
121 syntax
= cp
[0] == '@' ? xpg
: cen
;
125 while (syntax
== cen
&& cp
[0] != '\0' && cp
[0] != '+'
126 && cp
[0] != ',' && cp
[0] != '_')
129 mask
|= XPG_MODIFIER
| CEN_AUDIENCE
;
132 if (syntax
!= xpg
&& (cp
[0] == '+' || cp
[0] == ',' || cp
[0] == '_'))
138 /* Next is special application (CEN syntax). */
142 while (cp
[0] != '\0' && cp
[0] != ',' && cp
[0] != '_')
150 /* Next is sponsor (CEN syntax). */
154 while (cp
[0] != '\0' && cp
[0] != '_')
162 /* Next is revision (CEN syntax). */
166 mask
|= CEN_REVISION
;
170 /* For CEN syntax values it might be important to have the
171 separator character in the file name, not for XPG syntax. */
174 if (*territory
!= NULL
&& (*territory
)[0] == '\0')
177 if (*codeset
!= NULL
&& (*codeset
)[0] == '\0')
178 mask
&= ~XPG_CODESET
;
180 if (*modifier
!= NULL
&& (*modifier
)[0] == '\0')
181 mask
&= ~XPG_MODIFIER
;