1 /* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
2 Contributed 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)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24 #include <sys/types.h>
28 /* On some strange systems still no definition of NULL is found. Sigh! */
30 # if defined __STDC__ && __STDC__
31 # define NULL ((void *) 0)
37 /* @@ end of prolog @@ */
40 _nl_explode_name (name
, language
, modifier
, territory
, codeset
,
41 normalized_codeset
, special
, sponsor
, revision
)
43 const char **language
;
44 const char **modifier
;
45 const char **territory
;
47 const char **normalized_codeset
;
50 const char **revision
;
52 enum { undecided
, xpg
, cen
} syntax
;
59 *normalized_codeset
= NULL
;
64 /* Now we determine the single parts of the locale name. First
65 look for the language. Termination symbols are `_' and `@' if
66 we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */
69 *language
= cp
= name
;
70 while (cp
[0] != '\0' && cp
[0] != '_' && cp
[0] != '@'
71 && cp
[0] != '+' && cp
[0] != ',')
75 /* This does not make sense: language has to be specified. Use
76 this entry as it is without exploding. Perhaps it is an alias. */
77 cp
= strchr (*language
, '\0');
78 else if (cp
[0] == '_')
80 /* Next is the territory. */
84 while (cp
[0] != '\0' && cp
[0] != '.' && cp
[0] != '@'
85 && cp
[0] != '+' && cp
[0] != ',' && cp
[0] != '_')
92 /* Next is the codeset. */
97 while (cp
[0] != '\0' && cp
[0] != '@')
102 if (*codeset
!= cp
&& (*codeset
)[0] != '\0')
104 *normalized_codeset
= _nl_normalize_codeset (*codeset
,
106 if (strcmp (*codeset
, *normalized_codeset
) == 0)
107 free ((char *) *normalized_codeset
);
109 mask
|= XPG_NORM_CODESET
;
114 if (cp
[0] == '@' || (syntax
!= xpg
&& cp
[0] == '+'))
116 /* Next is the modifier. */
117 syntax
= cp
[0] == '@' ? xpg
: cen
;
121 while (syntax
== cen
&& cp
[0] != '\0' && cp
[0] != '+'
122 && cp
[0] != ',' && cp
[0] != '_')
125 mask
|= XPG_MODIFIER
| CEN_AUDIENCE
;
128 if (syntax
!= xpg
&& (cp
[0] == '+' || cp
[0] == ',' || cp
[0] == '_'))
134 /* Next is special application (CEN syntax). */
138 while (cp
[0] != '\0' && cp
[0] != ',' && cp
[0] != '_')
146 /* Next is sponsor (CEN syntax). */
150 while (cp
[0] != '\0' && cp
[0] != '_')
158 /* Next is revision (CEN syntax). */
162 mask
|= CEN_REVISION
;
166 /* For CEN syntax values it might be important to have the
167 separator character in the file name, not for XPG syntax. */
170 if (*territory
!= NULL
&& (*territory
)[0] == '\0')
173 if (*codeset
!= NULL
&& (*codeset
)[0] == '\0')
174 mask
&= ~XPG_CODESET
;
176 if (*modifier
!= NULL
&& (*modifier
)[0] == '\0')
177 mask
&= ~XPG_MODIFIER
;