Update.
[platform/upstream/glibc.git] / intl / loadinfo.h
1 /* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
4
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Library General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Library General Public License for more details.
14
15    You should have received a copy of the GNU Library General Public
16    License along with the GNU C Library; see the file COPYING.LIB.  If not,
17    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18    Boston, MA 02111-1307, USA.  */
19
20 #ifndef PARAMS
21 # if __STDC__
22 #  define PARAMS(args) args
23 # else
24 #  define PARAMS(args) ()
25 # endif
26 #endif
27
28 /* Encoding of locale name parts.  */
29 #define CEN_REVISION            1
30 #define CEN_SPONSOR             2
31 #define CEN_SPECIAL             4
32 #define XPG_NORM_CODESET        8
33 #define XPG_CODESET             16
34 #define TERRITORY               32
35 #define CEN_AUDIENCE            64
36 #define XPG_MODIFIER            128
37
38 #define CEN_SPECIFIC    (CEN_REVISION|CEN_SPONSOR|CEN_SPECIAL|CEN_AUDIENCE)
39 #define XPG_SPECIFIC    (XPG_CODESET|XPG_NORM_CODESET|XPG_MODIFIER)
40
41
42 struct loaded_l10nfile
43 {
44   const char *filename;
45   int decided;
46
47   const void *data;
48
49   struct loaded_l10nfile *next;
50   struct loaded_l10nfile *successor[1];
51 };
52
53
54 extern const char *_nl_normalize_codeset PARAMS ((const unsigned char *codeset,
55                                                   size_t name_len));
56
57 extern struct loaded_l10nfile *
58 _nl_make_l10nflist PARAMS ((struct loaded_l10nfile **l10nfile_list,
59                             const char *dirlist, size_t dirlist_len, int mask,
60                             const char *language, const char *territory,
61                             const char *codeset,
62                             const char *normalized_codeset,
63                             const char *modifier, const char *special,
64                             const char *sponsor, const char *revision,
65                             const char *filename, int do_allocate));
66
67
68 extern const char *_nl_expand_alias PARAMS ((const char *name));
69
70 extern int _nl_explode_name PARAMS ((char *name, const char **language,
71                                      const char **modifier,
72                                      const char **territory,
73                                      const char **codeset,
74                                      const char **normalized_codeset,
75                                      const char **special,
76                                      const char **sponsor,
77                                      const char **revision));