Update.
[glibc.git] / intl / gettextP.h
blob5225bcbc5e22e210c7d2aacc7b3e8fd75af21377
1 /* Header describing internals of gettext library
2 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
3 Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
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 _GETTEXTP_H
21 #define _GETTEXTP_H
23 #include "loadinfo.h"
25 /* @@ end of prolog @@ */
27 #ifndef PARAMS
28 # if __STDC__
29 # define PARAMS(args) args
30 # else
31 # define PARAMS(args) ()
32 # endif
33 #endif
35 #ifndef W
36 # define W(flag, data) ((flag) ? SWAP (data) : (data))
37 #endif
40 static nls_uint32 SWAP PARAMS ((nls_uint32 i));
42 static inline nls_uint32
43 SWAP (i)
44 nls_uint32 i;
46 return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24);
50 struct loaded_domain
52 const char *data;
53 int use_mmap;
54 size_t mmap_size;
55 int must_swap;
56 nls_uint32 nstrings;
57 struct string_desc *orig_tab;
58 struct string_desc *trans_tab;
59 nls_uint32 hash_size;
60 nls_uint32 *hash_tab;
63 struct binding
65 struct binding *next;
66 char *domainname;
67 char *dirname;
70 struct loaded_l10nfile *_nl_find_domain PARAMS ((const char *__dirname,
71 char *__locale,
72 const char *__domainname));
73 void _nl_load_domain PARAMS ((struct loaded_l10nfile *__domain));
74 void _nl_unload_domain PARAMS ((struct loaded_domain *__domain));
76 /* @@ begin of epilog @@ */
78 #endif /* gettextP.h */