r14844: Support a stdbool.h replacement in lib/replace/
[gd/samba-autobuild/.git] / source4 / lib / replace / replace.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    macros to go along with the lib/replace/ portability layer code
5
6    Copyright (C) Andrew Tridgell 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #ifndef _replace_h
24 #define _replace_h
25
26 #if defined(_MSC_VER) || defined(__MINGW32__)
27 #include "lib/replace/win32/replace.h"
28 #endif
29
30 #ifdef __COMPAR_FN_T
31 #define QSORT_CAST (__compar_fn_t)
32 #endif
33
34 #ifndef QSORT_CAST
35 #define QSORT_CAST (int (*)(const void *, const void *))
36 #endif
37
38 #ifdef HAVE_STDINT_H
39 #include <stdint.h>
40 #endif
41
42 #ifdef HAVE_INTTYPES_H
43 #include <inttypes.h>
44 #endif
45
46 #ifndef HAVE_STRERROR
47 extern char *sys_errlist[];
48 #define strerror(i) sys_errlist[i]
49 #endif
50
51 #ifndef HAVE_ERRNO_DECL
52 extern int errno;
53 #endif
54
55 #ifndef HAVE_STRDUP
56 char *strdup(const char *s);
57 #endif
58
59 #ifndef HAVE_MEMMOVE
60 void *memmove(void *dest,const void *src,int size);
61 #endif
62
63 #ifndef HAVE_MKTIME
64 time_t mktime(struct tm *t);
65 #endif
66
67 #ifndef HAVE_STRLCPY
68 size_t strlcpy(char *d, const char *s, size_t bufsize);
69 #endif
70
71 #ifndef HAVE_STRLCAT
72 size_t strlcat(char *d, const char *s, size_t bufsize);
73 #endif
74
75 #ifndef HAVE_STRNDUP
76 char *strndup(const char *s, size_t n);
77 #endif
78
79 #ifndef HAVE_STRNLEN
80 size_t strnlen(const char *s, size_t n);
81 #endif
82
83 #ifndef HAVE_STRTOUL
84 unsigned long strtoul(const char *nptr, char **endptr, int base);
85 #endif
86
87 #ifndef HAVE_SETENV
88 int setenv(const char *name, const char *value, int overwrite); 
89 #endif
90
91 #ifndef HAVE_RENAME
92 int rename(const char *zfrom, const char *zto);
93 #endif
94
95 #ifndef HAVE_STRCASESTR
96 char *strcasestr(const char *haystack, const char *needle);
97 #endif
98
99 #ifndef HAVE_FTRUNCATE
100 int ftruncate(int f,long l);
101 #endif
102
103 #ifndef HAVE_VASPRINTF_DECL
104 int vasprintf(char **ptr, const char *format, va_list ap);
105 #endif
106
107 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
108 #define bzero(a,b) memset((a),'\0',(b))
109 #endif
110
111 #ifndef PRINTF_ATTRIBUTE
112 #if !defined(NO_PRINTF_ATTRIBUTE) && (__GNUC__ >= 3)
113 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
114  * the parameter containing the format, and a2 the index of the first
115  * argument. Note that some gcc 2.x versions don't handle this
116  * properly **/
117 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
118 #else
119 #define PRINTF_ATTRIBUTE(a1, a2)
120 #endif
121 #endif
122
123 /* add varargs prototypes with printf checking */
124 #ifndef HAVE_SNPRINTF_DECL
125 int snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
126 #endif
127 #ifndef HAVE_ASPRINTF_DECL
128 int asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
129 #endif
130
131
132 /* we used to use these fns, but now we have good replacements
133    for snprintf and vsnprintf */
134 #define slprintf snprintf
135
136
137 #ifdef HAVE_VA_COPY
138 #define VA_COPY(dest, src) va_copy(dest, src)
139 #elif defined(HAVE___VA_COPY)
140 #define VA_COPY(dest, src) __va_copy(dest, src)
141 #else
142 #define VA_COPY(dest, src) (dest) = (src)
143 #endif
144
145 #if defined(HAVE_VOLATILE)
146 #define VOLATILE volatile
147 #else
148 #define VOLATILE
149 #endif
150
151 #ifndef HAVE_COMPARISON_FN_T
152 typedef int (*comparison_fn_t)(const void *, const void *);
153 #endif
154
155 /* Load header file for dynamic linking stuff */
156 #ifdef HAVE_DLFCN_H
157 #include <dlfcn.h>
158 #endif
159
160 #ifndef RTLD_LAZY
161 #define RTLD_LAZY 0
162 #endif
163
164 #ifndef HAVE_SECURE_MKSTEMP
165 #define mkstemp(path) rep_mkstemp(path)
166 int rep_mkstemp(char *temp);
167 #endif
168
169 #ifdef HAVE_LIMITS_H
170 #include <limits.h>
171 #endif
172
173 /* The extra casts work around common compiler bugs.  */
174 #define _TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
175 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
176    It is necessary at least when t == time_t.  */
177 #define _TYPE_MINIMUM(t) ((t) (_TYPE_SIGNED (t) \
178                               ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
179 #define _TYPE_MAXIMUM(t) ((t) (~ (t) 0 - _TYPE_MINIMUM (t)))
180
181 #ifndef HOST_NAME_MAX
182 #define HOST_NAME_MAX 64
183 #endif
184
185 #ifndef UINT16_MAX
186 #define UINT16_MAX 65535
187 #endif
188
189 #ifndef UINT32_MAX
190 #define UINT32_MAX (4294967295U)
191 #endif
192
193 #ifndef UINT64_MAX
194 #define UINT64_MAX ((uint64_t)-1)
195 #endif
196
197 #ifndef CHAR_BIT
198 #define CHAR_BIT 8
199 #endif
200
201 #ifndef INT32_MAX
202 #define INT32_MAX _TYPE_MAXIMUM(int32_t)
203 #endif
204
205 #ifdef HAVE_STDBOOL_H
206 #include <stdbool.h>
207 #else
208 #define __bool_true_false_are_defined
209 typedef bool int;
210 #define false (0)
211 #define true (1)
212 #endif
213
214 #endif