1 /* Internal header for GNU gettext internationalization functions.
2 Copyright (C) 1995-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the 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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
24 /* @@ end of prolog @@ */
26 /* The magic number of the GNU message catalog format. */
27 #define _MAGIC 0x950412de
28 #define _MAGIC_SWAPPED 0xde120495
30 /* Revision number of the currently used .mo (binary) file format. */
31 #define MO_REVISION_NUMBER 0
32 #define MO_REVISION_NUMBER_WITH_SYSDEP_I 1
34 /* The following contortions are an attempt to use the C preprocessor
35 to determine an unsigned integral type that is 32 bits wide. An
36 alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but
37 as of version autoconf-2.13, the AC_CHECK_SIZEOF macro doesn't work
38 when cross-compiling. */
41 # define UINT_MAX_32_BITS 4294967295U
43 # define UINT_MAX_32_BITS 0xFFFFFFFF
46 /* If UINT_MAX isn't defined, assume it's a 32-bit type.
47 This should be valid for all systems GNU cares about because
48 that doesn't include 16-bit systems, and only modern systems
49 (that certainly have <limits.h>) have 64+-bit integral types. */
52 # define UINT_MAX UINT_MAX_32_BITS
55 #if UINT_MAX == UINT_MAX_32_BITS
56 typedef unsigned nls_uint32
;
58 # if USHRT_MAX == UINT_MAX_32_BITS
59 typedef unsigned short nls_uint32
;
61 # if ULONG_MAX == UINT_MAX_32_BITS
62 typedef unsigned long nls_uint32
;
64 /* The following line is intended to throw an error. Using #error is
65 not portable enough. */
66 "Cannot determine unsigned 32-bit data type."
72 /* Header for binary .mo file format. */
75 /* The magic number. */
77 /* The revision number of the file format. */
80 /* The following are only used in .mo files with major revision 0 or 1. */
82 /* The number of strings pairs. */
84 /* Offset of table with start offsets of original strings. */
85 nls_uint32 orig_tab_offset
;
86 /* Offset of table with start offsets of translated strings. */
87 nls_uint32 trans_tab_offset
;
88 /* Size of hash table. */
89 nls_uint32 hash_tab_size
;
90 /* Offset of first hash table entry. */
91 nls_uint32 hash_tab_offset
;
93 /* The following are only used in .mo files with minor revision >= 1. */
95 /* The number of system dependent segments. */
96 nls_uint32 n_sysdep_segments
;
97 /* Offset of table describing system dependent segments. */
98 nls_uint32 sysdep_segments_offset
;
99 /* The number of system dependent strings pairs. */
100 nls_uint32 n_sysdep_strings
;
101 /* Offset of table with start offsets of original sysdep strings. */
102 nls_uint32 orig_sysdep_tab_offset
;
103 /* Offset of table with start offsets of translated sysdep strings. */
104 nls_uint32 trans_sysdep_tab_offset
;
107 /* Descriptor for static string contained in the binary .mo file. */
110 /* Length of addressed string, not including the trailing NUL. */
112 /* Offset of string in file. */
116 /* The following are only used in .mo files with minor revision >= 1. */
118 /* Descriptor for system dependent string segment. */
119 struct sysdep_segment
121 /* Length of addressed string, including the trailing NUL. */
123 /* Offset of string in file. */
127 /* Descriptor for system dependent string. */
130 /* Offset of static string segments in file. */
132 /* Alternating sequence of static and system dependent segments.
133 The last segment is a static segment, including the trailing NUL. */
136 /* Size of static segment. */
138 /* Reference to system dependent string segment, or ~0 at the end. */
139 nls_uint32 sysdepref
;
143 /* Marker for the end of the segments[] array. This has the value 0xFFFFFFFF,
144 regardless whether 'int' is 16 bit, 32 bit, or 64 bit. */
145 #define SEGMENTS_END ((nls_uint32) ~0)
147 /* @@ begin of epilog @@ */
149 #endif /* gettext.h */