1 /* Copyright (C) 1996-1999, 2000, 2001 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU Library General Public License as published
7 by the Free Software Foundation; either version 2, or (at your option)
10 This program 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 this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
25 # define PARAMS(args) args
27 # define PARAMS(args) ()
31 #ifndef internal_function
32 # define internal_function
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)
41 /* Separator in PATH like lists of pathnames. */
42 #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__
43 /* Win32, OS/2, DOS */
44 # define PATH_SEPARATOR ';'
47 # define PATH_SEPARATOR ':'
50 /* Encoding of locale name parts. */
51 #define CEN_REVISION 1
54 #define XPG_NORM_CODESET 8
55 #define XPG_CODESET 16
57 #define CEN_AUDIENCE 64
58 #define XPG_MODIFIER 128
60 #define CEN_SPECIFIC (CEN_REVISION|CEN_SPONSOR|CEN_SPECIAL|CEN_AUDIENCE)
61 #define XPG_SPECIFIC (XPG_CODESET|XPG_NORM_CODESET|XPG_MODIFIER)
64 struct loaded_l10nfile
71 struct loaded_l10nfile *next;
72 struct loaded_l10nfile *successor[1];
76 /* Normalize codeset name. There is no standard for the codeset
77 names. Normalization allows the user to use any of the common
78 names. The return value is dynamically allocated and has to be
79 freed by the caller. */
80 extern const char *_nl_normalize_codeset PARAMS ((const char *codeset,
83 extern struct loaded_l10nfile *
84 _nl_make_l10nflist PARAMS ((struct loaded_l10nfile **l10nfile_list,
85 const char *dirlist, size_t dirlist_len, int mask,
86 const char *language, const char *territory,
88 const char *normalized_codeset,
89 const char *modifier, const char *special,
90 const char *sponsor, const char *revision,
91 const char *filename, int do_allocate));
94 extern const char *_nl_expand_alias PARAMS ((const char *name));
96 /* normalized_codeset is dynamically allocated and has to be freed by
98 extern int _nl_explode_name PARAMS ((char *name, const char **language,
99 const char **modifier,
100 const char **territory,
101 const char **codeset,
102 const char **normalized_codeset,
103 const char **special,
104 const char **sponsor,
105 const char **revision));
107 extern char *_nl_find_language PARAMS ((const char *name));
109 #endif /* loadinfo.h */