1 /* Header describing internals of gettext library
2 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 /* @@ end of prolog @@ */
27 # define PARAMS(args) args
29 # define PARAMS(args) ()
34 # define W(flag, data) ((flag) ? SWAP (data) : (data))
38 static nls_uint32 SWAP PARAMS ((nls_uint32 i));
40 static inline nls_uint32
44 return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24);
53 struct string_desc *orig_tab;
54 struct string_desc *trans_tab;
66 struct loaded_l10nfile *_nl_find_domain PARAMS ((const char *__dirname,
68 const char *__domainname));
69 void _nl_load_domain PARAMS ((struct loaded_l10nfile *__domain));
71 /* @@ begin of epilog @@ */
73 #endif /* gettextP.h */