* sysdeps/unix/sysv/linux/ia64/ioperm.c: Don't include kernel
[glibc/pb-stable.git] / intl / loadinfo.h
bloba48433e4e90502d8e43e339504f21d750a718a49
1 /* Copyright (C) 1996, 1997, 1998, 1999, 2000 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 _LOADINFO_H
21 #define _LOADINFO_H 1
23 #ifndef PARAMS
24 # if __STDC__
25 # define PARAMS(args) args
26 # else
27 # define PARAMS(args) ()
28 # endif
29 #endif
31 #ifndef internal_function
32 # define internal_function
33 #endif
35 /* Tell the compiler when a conditional or integer expression is
36 almost always true or almost always false. */
37 #ifndef HAVE_BUILTIN_EXPECT
38 # define __builtin_expect(expr, val) (expr)
39 #endif
41 /* Encoding of locale name parts. */
42 #define CEN_REVISION 1
43 #define CEN_SPONSOR 2
44 #define CEN_SPECIAL 4
45 #define XPG_NORM_CODESET 8
46 #define XPG_CODESET 16
47 #define TERRITORY 32
48 #define CEN_AUDIENCE 64
49 #define XPG_MODIFIER 128
51 #define CEN_SPECIFIC (CEN_REVISION|CEN_SPONSOR|CEN_SPECIAL|CEN_AUDIENCE)
52 #define XPG_SPECIFIC (XPG_CODESET|XPG_NORM_CODESET|XPG_MODIFIER)
55 struct loaded_l10nfile
57 const char *filename;
58 struct binding *domainbinding;
59 int decided;
61 const void *data;
63 struct loaded_l10nfile *next;
64 struct loaded_l10nfile *successor[1];
68 /* Normalize codeset name. There is no standard for the codeset
69 names. Normalization allows the user to use any of the common
70 names. The return value is dynamically allocated and has to be
71 freed by the caller. */
72 extern const char *_nl_normalize_codeset PARAMS ((const char *codeset,
73 size_t name_len));
75 extern struct loaded_l10nfile *
76 _nl_make_l10nflist PARAMS ((struct loaded_l10nfile **l10nfile_list,
77 const char *dirlist, size_t dirlist_len, int mask,
78 const char *language, const char *territory,
79 const char *codeset,
80 const char *normalized_codeset,
81 const char *modifier, const char *special,
82 const char *sponsor, const char *revision,
83 const char *filename,
84 struct binding *domainbinding, int do_allocate));
87 extern const char *_nl_expand_alias PARAMS ((const char *name));
89 /* normalized_codeset is dynamically allocated and has to be freed by
90 the caller. */
91 extern int _nl_explode_name PARAMS ((char *name, const char **language,
92 const char **modifier,
93 const char **territory,
94 const char **codeset,
95 const char **normalized_codeset,
96 const char **special,
97 const char **sponsor,
98 const char **revision));
100 extern char *_nl_find_language PARAMS ((const char *name));
103 extern char *_nl_find_msg PARAMS ((struct loaded_l10nfile *domain_file,
104 const char *msgid, size_t *lengthp))
105 internal_function;
107 #endif /* loadinfo.h */