1 /* Copyright (C) 1995-1998, 2000, 2001 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 #include "intl/gettext/loadinfo.h"
30 /* On some strange systems still no definition of NULL is found. Sigh! */
32 #if defined __STDC__ && __STDC__
33 #define NULL ((void *) 0)
39 /* @@ end of prolog @@ */
42 _nl_find_language(const unsigned char *name
)
44 while (name
[0] != '\0' && name
[0] != '_' && name
[0] != '@'
45 && name
[0] != '+' && name
[0] != ',')
48 return (unsigned char *) name
;
52 _nl_explode_name(unsigned char *name
, const unsigned char **language
, const unsigned char **modifier
,
53 const unsigned char **territory
, const unsigned char **codeset
,
54 const unsigned char **normalized_codeset
, const unsigned char **special
,
55 const unsigned char **sponsor
, const unsigned char **revision
)
57 enum { undecided
, xpg
, cen
} syntax
;
64 *normalized_codeset
= NULL
;
69 /* Now we determine the single parts of the locale name. First
70 look for the language. Termination symbols are `_' and `@' if
71 we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */
74 *language
= cp
= name
;
75 cp
= _nl_find_language(*language
);
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] == '_') {
82 /* Next is the territory. */
86 while (cp
[0] != '\0' && cp
[0] != '.' && cp
[0] != '@'
87 && cp
[0] != '+' && cp
[0] != ',' && cp
[0] != '_')
93 /* Next is the codeset. */
98 while (cp
[0] != '\0' && cp
[0] != '@')
103 if (*codeset
!= cp
&& (*codeset
)[0] != '\0') {
104 *normalized_codeset
=
105 _nl_normalize_codeset(*codeset
,
107 if (strcmp(*codeset
, *normalized_codeset
) == 0)
108 free((unsigned char *) *normalized_codeset
);
110 mask
|= XPG_NORM_CODESET
;
115 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] == '_')) {
132 /* Next is special application (CEN syntax). */
136 while (cp
[0] != '\0' && cp
[0] != ',' && cp
[0] != '_')
143 /* Next is sponsor (CEN syntax). */
147 while (cp
[0] != '\0' && cp
[0] != '_')
154 /* Next is revision (CEN syntax). */
158 mask
|= CEN_REVISION
;
162 /* For CEN syntax values it might be important to have the
163 separator character in the file name, not for XPG syntax. */
165 if (*territory
!= NULL
&& (*territory
)[0] == '\0')
168 if (*codeset
!= NULL
&& (*codeset
)[0] == '\0')
169 mask
&= ~XPG_CODESET
;
171 if (*modifier
!= NULL
&& (*modifier
)[0] == '\0')
172 mask
&= ~XPG_MODIFIER
;