]> git.ipfire.org Git - thirdparty/glibc.git/blame - intl/gettextP.h
Update.
[thirdparty/glibc.git] / intl / gettextP.h
CommitLineData
c84142e8
UD
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.
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. */
24906b43
RM
19
20#ifndef _GETTEXTP_H
21#define _GETTEXTP_H
22
7a12c6bb
RM
23#include "loadinfo.h"
24
24906b43
RM
25/* @@ end of prolog @@ */
26
be10a868 27#ifndef PARAMS
24906b43 28# if __STDC__
be10a868 29# define PARAMS(args) args
24906b43 30# else
be10a868 31# define PARAMS(args) ()
24906b43
RM
32# endif
33#endif
34
35#ifndef W
36# define W(flag, data) ((flag) ? SWAP (data) : (data))
37#endif
38
be10a868
RM
39
40static nls_uint32 SWAP PARAMS ((nls_uint32 i));
41
24906b43
RM
42static inline nls_uint32
43SWAP (i)
44 nls_uint32 i;
45{
46 return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24);
47}
48
49
50struct loaded_domain
51{
24906b43 52 const char *data;
a5a0310d
UD
53 int use_mmap;
54 size_t mmap_size;
24906b43
RM
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;
61};
62
63struct binding
64{
65 struct binding *next;
66 char *domainname;
67 char *dirname;
68};
69
7a12c6bb
RM
70struct loaded_l10nfile *_nl_find_domain PARAMS ((const char *__dirname,
71 char *__locale,
72 const char *__domainname));
73void _nl_load_domain PARAMS ((struct loaded_l10nfile *__domain));
a5a0310d 74void _nl_unload_domain PARAMS ((struct loaded_domain *__domain));
24906b43
RM
75
76/* @@ begin of epilog @@ */
77
78#endif /* gettextP.h */