]> icculus.org git repositories - icculus/xz.git/blob - src/common/sysdefs.h
Put the interesting parts of XZ Utils into the public domain.
[icculus/xz.git] / src / common / sysdefs.h
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       sysdefs.h
4 /// \brief      Common includes, definitions, system-specific things etc.
5 ///
6 /// This file is used also by the lzma command line tool, that's why this
7 /// file is separate from common.h.
8 //
9 //  Author:     Lasse Collin
10 //
11 //  This file has been put into the public domain.
12 //  You can do whatever you want with this file.
13 //
14 ///////////////////////////////////////////////////////////////////////////////
15
16 #ifndef LZMA_SYSDEFS_H
17 #define LZMA_SYSDEFS_H
18
19 //////////////
20 // Includes //
21 //////////////
22
23 #ifdef HAVE_CONFIG_H
24 #       include <config.h>
25 #endif
26
27 // size_t and NULL
28 #include <stddef.h>
29
30 #ifdef HAVE_INTTYPES_H
31 #       include <inttypes.h>
32 #endif
33
34 // C99 says that inttypes.h always includes stdint.h, but some systems
35 // don't do that, and require including stdint.h separately.
36 #ifdef HAVE_STDINT_H
37 #       include <stdint.h>
38 #endif
39
40 // Some pre-C99 systems have SIZE_MAX in limits.h instead of stdint.h. The
41 // limits are also used to figure out some macros missing from pre-C99 systems.
42 #ifdef HAVE_LIMITS_H
43 #       include <limits.h>
44 #endif
45
46 // Be more compatible with systems that have non-conforming inttypes.h.
47 // We assume that int is 32-bit and that long is either 32-bit or 64-bit.
48 // Full Autoconf test could be more correct, but this should work well enough.
49 // Note that this duplicates some code from lzma.h, but this is better since
50 // we can work without inttypes.h thanks to Autoconf tests.
51 #ifndef UINT32_C
52 #       if UINT_MAX != 4294967295U
53 #               error UINT32_C is not defined and unsiged int is not 32-bit.
54 #       endif
55 #       define UINT32_C(n) n ## U
56 #endif
57 #ifndef UINT32_MAX
58 #       define UINT32_MAX UINT32_C(4294967295)
59 #endif
60 #ifndef PRIu32
61 #       define PRIu32 "u"
62 #endif
63 #ifndef PRIX32
64 #       define PRIX32 "X"
65 #endif
66
67 #if ULONG_MAX == 4294967295UL
68 #       ifndef UINT64_C
69 #               define UINT64_C(n) n ## ULL
70 #       endif
71 #       ifndef PRIu64
72 #               define PRIu64 "llu"
73 #       endif
74 #       ifndef PRIX64
75 #               define PRIX64 "llX"
76 #       endif
77 #else
78 #       ifndef UINT64_C
79 #               define UINT64_C(n) n ## UL
80 #       endif
81 #       ifndef PRIu64
82 #               define PRIu64 "lu"
83 #       endif
84 #       ifndef PRIX64
85 #               define PRIX64 "lX"
86 #       endif
87 #endif
88 #ifndef UINT64_MAX
89 #       define UINT64_MAX UINT64_C(18446744073709551615)
90 #endif
91
92 // The code currently assumes that size_t is either 32-bit or 64-bit.
93 #ifndef SIZE_MAX
94 #       if SIZEOF_SIZE_T == 4
95 #               define SIZE_MAX UINT32_MAX
96 #       elif SIZEOF_SIZE_T == 8
97 #               define SIZE_MAX UINT64_MAX
98 #       else
99 #               error sizeof(size_t) is not 32-bit or 64-bit
100 #       endif
101 #endif
102 #if SIZE_MAX != UINT32_MAX && SIZE_MAX != UINT64_MAX
103 #       error sizeof(size_t) is not 32-bit or 64-bit
104 #endif
105
106 #include <stdlib.h>
107 #include <assert.h>
108
109 // Pre-C99 systems lack stdbool.h. All the code in LZMA Utils must be written
110 // so that it works with fake bool type, for example:
111 //
112 //    bool foo = (flags & 0x100) != 0;
113 //    bool bar = !!(flags & 0x100);
114 //
115 // This works with the real C99 bool but breaks with fake bool:
116 //
117 //    bool baz = (flags & 0x100);
118 //
119 #ifdef HAVE_STDBOOL_H
120 #       include <stdbool.h>
121 #else
122 #       if ! HAVE__BOOL
123 typedef unsigned char _Bool;
124 #       endif
125 #       define bool _Bool
126 #       define false 0
127 #       define true 1
128 #       define __bool_true_false_are_defined 1
129 #endif
130
131 // string.h should be enough but let's include strings.h and memory.h too if
132 // they exists, since that shouldn't do any harm, but may improve portability.
133 #ifdef HAVE_STRING_H
134 #       include <string.h>
135 #endif
136
137 #ifdef HAVE_STRINGS_H
138 #       include <strings.h>
139 #endif
140
141 #ifdef HAVE_MEMORY_H
142 #       include <memory.h>
143 #endif
144
145
146 ////////////
147 // Macros //
148 ////////////
149
150 #if defined(_WIN32) || defined(__MSDOS__) || defined(__OS2__)
151 #       define DOSLIKE 1
152 #endif
153
154 #undef memzero
155 #define memzero(s, n) memset(s, 0, n)
156
157 #ifndef MIN
158 #       define MIN(x, y) ((x) < (y) ? (x) : (y))
159 #endif
160
161 #ifndef MAX
162 #       define MAX(x, y) ((x) > (y) ? (x) : (y))
163 #endif
164
165 #ifndef ARRAY_SIZE
166 #       define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))
167 #endif
168
169 #endif