Update.
[platform/upstream/glibc.git] / intl / loadinfo.h
1 /* Copyright (C) 1996, 1997, 1998, 1999 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 _LOADINFO_H
21 #define _LOADINFO_H     1
22
23 #ifndef PARAMS
24 # if __STDC__
25 #  define PARAMS(args) args
26 # else
27 #  define PARAMS(args) ()
28 # endif
29 #endif
30
31 /* Encoding of locale name parts.  */
32 #define CEN_REVISION            1
33 #define CEN_SPONSOR             2
34 #define CEN_SPECIAL             4
35 #define XPG_NORM_CODESET        8
36 #define XPG_CODESET             16
37 #define TERRITORY               32
38 #define CEN_AUDIENCE            64
39 #define XPG_MODIFIER            128
40
41 #define CEN_SPECIFIC    (CEN_REVISION|CEN_SPONSOR|CEN_SPECIAL|CEN_AUDIENCE)
42 #define XPG_SPECIFIC    (XPG_CODESET|XPG_NORM_CODESET|XPG_MODIFIER)
43
44
45 struct loaded_l10nfile
46 {
47   const char *filename;
48   int decided;
49
50   const void *data;
51
52   struct loaded_l10nfile *next;
53   struct loaded_l10nfile *successor[1];
54 };
55
56
57 extern const char *_nl_normalize_codeset PARAMS ((const char *codeset,
58                                                   size_t name_len));
59
60 extern struct loaded_l10nfile *
61 _nl_make_l10nflist PARAMS ((struct loaded_l10nfile **l10nfile_list,
62                             const char *dirlist, size_t dirlist_len, int mask,
63                             const char *language, const char *territory,
64                             const char *codeset,
65                             const char *normalized_codeset,
66                             const char *modifier, const char *special,
67                             const char *sponsor, const char *revision,
68                             const char *filename, int do_allocate));
69
70
71 extern const char *_nl_expand_alias PARAMS ((const char *name));
72
73 extern int _nl_explode_name PARAMS ((char *name, const char **language,
74                                      const char **modifier,
75                                      const char **territory,
76                                      const char **codeset,
77                                      const char **normalized_codeset,
78                                      const char **special,
79                                      const char **sponsor,
80                                      const char **revision));
81
82 extern char *_nl_find_language PARAMS ((const char *name));
83
84
85 extern char *_nl_find_msg PARAMS ((struct loaded_l10nfile *domain_file,
86                                    const char *msgid))
87      internal_function;
88
89 #endif  /* loadinfo.h */