1 /* Header describing internals of gettext library
2 Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
3 Written by Ulrich Drepper <drepper@cygnus.com>, 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. */
24 # include "../iconv/gconv_int.h"
33 /* @@ end of prolog @@ */
37 # define PARAMS(args) args
39 # define PARAMS(args) ()
43 #ifndef internal_function
44 # define internal_function
48 # define W(flag, data) ((flag) ? SWAP (data) : (data))
53 # include <byteswap.h>
54 # define SWAP(i) bswap_32 (i)
56 static nls_uint32 SWAP
PARAMS ((nls_uint32 i
));
58 static inline nls_uint32
62 return (i
<< 24) | ((i
& 0xff00) << 8) | ((i
>> 8) & 0xff00) | (i
>> 24);
74 struct string_desc
*orig_tab
;
75 struct string_desc
*trans_tab
;
95 struct loaded_l10nfile
*_nl_find_domain
PARAMS ((const char *__dirname
,
97 const char *__domainname
))
99 void _nl_load_domain
PARAMS ((struct loaded_l10nfile
*__domain
))
101 void _nl_unload_domain
PARAMS ((struct loaded_domain
*__domain
))
104 /* @@ begin of epilog @@ */
106 #endif /* gettextP.h */