* cp-tree.h (make_typename_type): Change prototype.
[official-gcc.git] / texinfo / intl / explodename.c
blob5c4e09ea2213ec5712e937fd3ed70416c5e8def1
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)
7 any later version.
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. */
18 #ifdef HAVE_CONFIG_H
19 # include <config.h>
20 #endif
22 #if defined STDC_HEADERS || defined _LIBC
23 # include <stdlib.h>
24 #endif
25 #include <string.h>
26 #include <sys/types.h>
28 #include "loadinfo.h"
30 /* On some strange systems still no definition of NULL is found. Sigh! */
31 #ifndef NULL
32 # if defined __STDC__ && __STDC__
33 # define NULL ((void *) 0)
34 # else
35 # define NULL 0
36 # endif
37 #endif
39 /* @@ end of prolog @@ */
41 int
42 _nl_explode_name (name, language, modifier, territory, codeset,
43 normalized_codeset, special, sponsor, revision)
44 char *name;
45 const char **language;
46 const char **modifier;
47 const char **territory;
48 const char **codeset;
49 const char **normalized_codeset;
50 const char **special;
51 const char **sponsor;
52 const char **revision;
54 enum { undecided, xpg, cen } syntax;
55 char *cp;
56 int mask;
58 *modifier = NULL;
59 *territory = NULL;
60 *codeset = NULL;
61 *normalized_codeset = NULL;
62 *special = NULL;
63 *sponsor = NULL;
64 *revision = NULL;
66 /* Now we determine the single parts of the locale name. First
67 look for the language. Termination symbols are `_' and `@' if
68 we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */
69 mask = 0;
70 syntax = undecided;
71 *language = cp = name;
72 while (cp[0] != '\0' && cp[0] != '_' && cp[0] != '@'
73 && cp[0] != '+' && cp[0] != ',')
74 ++cp;
76 if (*language == cp)
77 /* This does not make sense: language has to be specified. Use
78 this entry as it is without exploding. Perhaps it is an alias. */
79 cp = strchr (*language, '\0');
80 else if (cp[0] == '_')
82 /* Next is the territory. */
83 cp[0] = '\0';
84 *territory = ++cp;
86 while (cp[0] != '\0' && cp[0] != '.' && cp[0] != '@'
87 && cp[0] != '+' && cp[0] != ',' && cp[0] != '_')
88 ++cp;
90 mask |= TERRITORY;
92 if (cp[0] == '.')
94 /* Next is the codeset. */
95 syntax = xpg;
96 cp[0] = '\0';
97 *codeset = ++cp;
99 while (cp[0] != '\0' && cp[0] != '@')
100 ++cp;
102 mask |= XPG_CODESET;
104 if (*codeset != cp && (*codeset)[0] != '\0')
106 *normalized_codeset = _nl_normalize_codeset (*codeset,
107 cp - *codeset);
108 if (strcmp (*codeset, *normalized_codeset) == 0)
109 free ((char *) *normalized_codeset);
110 else
111 mask |= XPG_NORM_CODESET;
116 if (cp[0] == '@' || (syntax != xpg && cp[0] == '+'))
118 /* Next is the modifier. */
119 syntax = cp[0] == '@' ? xpg : cen;
120 cp[0] = '\0';
121 *modifier = ++cp;
123 while (syntax == cen && cp[0] != '\0' && cp[0] != '+'
124 && cp[0] != ',' && cp[0] != '_')
125 ++cp;
127 mask |= XPG_MODIFIER | CEN_AUDIENCE;
130 if (syntax != xpg && (cp[0] == '+' || cp[0] == ',' || cp[0] == '_'))
132 syntax = cen;
134 if (cp[0] == '+')
136 /* Next is special application (CEN syntax). */
137 cp[0] = '\0';
138 *special = ++cp;
140 while (cp[0] != '\0' && cp[0] != ',' && cp[0] != '_')
141 ++cp;
143 mask |= CEN_SPECIAL;
146 if (cp[0] == ',')
148 /* Next is sponsor (CEN syntax). */
149 cp[0] = '\0';
150 *sponsor = ++cp;
152 while (cp[0] != '\0' && cp[0] != '_')
153 ++cp;
155 mask |= CEN_SPONSOR;
158 if (cp[0] == '_')
160 /* Next is revision (CEN syntax). */
161 cp[0] = '\0';
162 *revision = ++cp;
164 mask |= CEN_REVISION;
168 /* For CEN syntax values it might be important to have the
169 separator character in the file name, not for XPG syntax. */
170 if (syntax == xpg)
172 if (*territory != NULL && (*territory)[0] == '\0')
173 mask &= ~TERRITORY;
175 if (*codeset != NULL && (*codeset)[0] == '\0')
176 mask &= ~XPG_CODESET;
178 if (*modifier != NULL && (*modifier)[0] == '\0')
179 mask &= ~XPG_MODIFIER;
182 return mask;