1 /* Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
2 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library 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 GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
23 #if defined STDC_HEADERS || defined _LIBC
27 #if defined HAVE_STRING_H || defined _LIBC
32 #include <sys/types.h>
36 /* On some strange systems still no definition of NULL is found. Sigh! */
38 # if defined __STDC__ && __STDC__
39 # define NULL ((void *) 0)
45 /* @@ end of prolog @@ */
48 _nl_find_language (const char *name
)
50 while (name
[0] != '\0' && name
[0] != '_' && name
[0] != '@'
51 && name
[0] != '+' && name
[0] != ',')
59 _nl_explode_name (name
, language
, modifier
, territory
, codeset
,
60 normalized_codeset
, special
, sponsor
, revision
)
62 const char **language
;
63 const char **modifier
;
64 const char **territory
;
66 const char **normalized_codeset
;
69 const char **revision
;
71 enum { undecided
, xpg
, cen
} syntax
;
78 *normalized_codeset
= NULL
;
83 /* Now we determine the single parts of the locale name. First
84 look for the language. Termination symbols are `_' and `@' if
85 we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */
88 *language
= cp
= name
;
89 cp
= _nl_find_language (*language
);
92 /* This does not make sense: language has to be specified. Use
93 this entry as it is without exploding. Perhaps it is an alias. */
94 cp
= strchr (*language
, '\0');
95 else if (cp
[0] == '_')
97 /* Next is the territory. */
101 while (cp
[0] != '\0' && cp
[0] != '.' && cp
[0] != '@'
102 && cp
[0] != '+' && cp
[0] != ',' && cp
[0] != '_')
109 /* Next is the codeset. */
114 while (cp
[0] != '\0' && cp
[0] != '@')
119 if (*codeset
!= cp
&& (*codeset
)[0] != '\0')
121 *normalized_codeset
= _nl_normalize_codeset (*codeset
,
123 if (strcmp (*codeset
, *normalized_codeset
) == 0)
124 free ((char *) *normalized_codeset
);
126 mask
|= XPG_NORM_CODESET
;
131 if (cp
[0] == '@' || (syntax
!= xpg
&& cp
[0] == '+'))
133 /* Next is the modifier. */
134 syntax
= cp
[0] == '@' ? xpg
: cen
;
138 while (syntax
== cen
&& cp
[0] != '\0' && cp
[0] != '+'
139 && cp
[0] != ',' && cp
[0] != '_')
142 mask
|= XPG_MODIFIER
| CEN_AUDIENCE
;
145 if (syntax
!= xpg
&& (cp
[0] == '+' || cp
[0] == ',' || cp
[0] == '_'))
151 /* Next is special application (CEN syntax). */
155 while (cp
[0] != '\0' && cp
[0] != ',' && cp
[0] != '_')
163 /* Next is sponsor (CEN syntax). */
167 while (cp
[0] != '\0' && cp
[0] != '_')
175 /* Next is revision (CEN syntax). */
179 mask
|= CEN_REVISION
;
183 /* For CEN syntax values it might be important to have the
184 separator character in the file name, not for XPG syntax. */
187 if (*territory
!= NULL
&& (*territory
)[0] == '\0')
190 if (*codeset
!= NULL
&& (*codeset
)[0] == '\0')
191 mask
&= ~XPG_CODESET
;
193 if (*modifier
!= NULL
&& (*modifier
)[0] == '\0')
194 mask
&= ~XPG_MODIFIER
;