Update.
[glibc.git] / intl / loadinfo.h
blob35d98f0d9b87c62ff51bc50e204a26392326bb17
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.
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.
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.
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. */
20 #ifndef PARAMS
21 # if __STDC__
22 # define PARAMS(args) args
23 # else
24 # define PARAMS(args) ()
25 # endif
26 #endif
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
38 #define CEN_SPECIFIC (CEN_REVISION|CEN_SPONSOR|CEN_SPECIAL|CEN_AUDIENCE)
39 #define XPG_SPECIFIC (XPG_CODESET|XPG_NORM_CODESET|XPG_MODIFIER)
42 struct loaded_l10nfile
44 const char *filename;
45 int decided;
47 const void *data;
49 struct loaded_l10nfile *next;
50 struct loaded_l10nfile *successor[1];
54 extern const char *_nl_normalize_codeset PARAMS ((const char *codeset,
55 size_t name_len));
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));
68 extern const char *_nl_expand_alias PARAMS ((const char *name));
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));
79 extern char *_nl_find_language PARAMS ((const char *name));