r18111: base inclusion of replacement printf fns on function existance, not
[ira/wip.git] / source / 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    Copyright (C) Jelmer Vernooij 2006
8
9      ** NOTE! The following LGPL license applies to the replace
10      ** library. This does NOT imply that all of Samba is released
11      ** under the LGPL
12    
13    This library is free software; you can redistribute it and/or
14    modify it under the terms of the GNU Lesser General Public
15    License as published by the Free Software Foundation; either
16    version 2 of the License, or (at your option) any later version.
17
18    This library is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21    Lesser General Public License for more details.
22
23    You should have received a copy of the GNU Lesser General Public
24    License along with this library; if not, write to the Free Software
25    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 */
27
28 #ifndef _replace_h
29 #define _replace_h
30
31 #include "config.h"
32 #include <stdlib.h>
33 #include <stdarg.h>
34
35 #if defined(_MSC_VER) || defined(__MINGW32__)
36 #include "lib/replace/win32/replace.h"
37 #endif
38
39 #ifdef __COMPAR_FN_T
40 #define QSORT_CAST (__compar_fn_t)
41 #endif
42
43 #ifndef QSORT_CAST
44 #define QSORT_CAST (int (*)(const void *, const void *))
45 #endif
46
47 #ifdef HAVE_STDINT_H
48 #include <stdint.h>
49 #elif HAVE_INTTYPES_H
50 #include <inttypes.h>
51 #endif
52
53 #ifndef HAVE_STRERROR
54 extern char *sys_errlist[];
55 #define strerror(i) sys_errlist[i]
56 #endif
57
58 #ifndef HAVE_ERRNO_DECL
59 extern int errno;
60 #endif
61
62 #ifndef HAVE_STRDUP
63 #define strdup rep_strdup
64 char *rep_strdup(const char *s);
65 #endif
66
67 #ifndef HAVE_MEMMOVE
68 #define memmove rep_memmove
69 void *rep_memmove(void *dest,const void *src,int size);
70 #endif
71
72 #if !defined(HAVE_MKTIME) || !defined(HAVE_TIMEGM)
73 #include <sys/time.h>
74 #endif
75
76 #ifndef HAVE_MKTIME
77 #define mktime rep_mktime
78 time_t rep_mktime(struct tm *t);
79 #endif
80
81 #ifndef HAVE_TIMEGM
82 struct tm;
83 #define timegm rep_timegm
84 time_t rep_timegm(struct tm *tm);
85 #endif
86
87 #ifndef HAVE_STRLCPY
88 #define strlcpy rep_strlcpy
89 size_t rep_strlcpy(char *d, const char *s, size_t bufsize);
90 #endif
91
92 #ifndef HAVE_STRLCAT
93 #define strlcat rep_strlcat
94 size_t rep_strlcat(char *d, const char *s, size_t bufsize);
95 #endif
96
97 #ifndef HAVE_STRNDUP
98 #define strndup rep_strndup
99 char *rep_strndup(const char *s, size_t n);
100 #endif
101
102 #ifndef HAVE_STRNLEN
103 #define strnlen rep_strnlen
104 size_t rep_strnlen(const char *s, size_t n);
105 #endif
106
107 #ifndef HAVE_SETENV
108 #define setenv rep_setenv
109 int rep_setenv(const char *name, const char *value, int overwrite); 
110 #endif
111
112 #ifndef HAVE_RENAME
113 #define rename rep_rename
114 int rep_rename(const char *zfrom, const char *zto);
115 #endif
116
117 #ifndef HAVE_STRCASESTR
118 #define strcasestr rep_strcasestr
119 char *rep_strcasestr(const char *haystack, const char *needle);
120 #endif
121
122 #ifndef HAVE_STRTOK_R
123 #define strtok_r rep_strtok_r 
124 char *rep_strtok_r(char *s, const char *delim, char **save_ptr);
125 #endif
126
127 #ifndef HAVE_STRTOLL
128 #define strtoll rep_strtoll
129 long long int rep_strtoll(const char *str, char **endptr, int base);
130 #endif
131
132 #ifndef HAVE_STRTOULL
133 #define strtoull rep_strtoull
134 unsigned long long int rep_strtoull(const char *str, char **endptr, int base);
135 #endif
136
137 #ifndef HAVE_FTRUNCATE
138 #define ftruncate rep_ftruncate
139 int rep_ftruncate(int f,long l);
140 #endif
141
142 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
143 #define bzero(a,b) memset((a),'\0',(b))
144 #endif
145
146
147 #ifndef PRINTF_ATTRIBUTE
148 #if __GNUC__ >= 3
149 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
150  * the parameter containing the format, and a2 the index of the first
151  * argument. Note that some gcc 2.x versions don't handle this
152  * properly **/
153 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
154 #else
155 #define PRINTF_ATTRIBUTE(a1, a2)
156 #endif
157 #endif
158
159 #ifndef HAVE_VASPRINTF
160 #define vasprintf rep_vasprintf
161 int rep_vasprintf(char **ptr, const char *format, va_list ap);
162 #endif
163
164 #ifndef HAVE_SNPRINTF
165 #define snprintf rep_snprintf
166 int rep_snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
167 #endif
168
169 #ifndef HAVE_VSNPRINTF
170 #define vsnprintf rep_vsnprintf
171 int rep_vsnprintf(char *,size_t ,const char *, va_list ap);
172 #endif
173
174 #ifndef HAVE_ASPRINTF
175 #define asprintf rep_asprintf
176 int rep_asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
177 #endif
178
179
180 /* we used to use these fns, but now we have good replacements
181    for snprintf and vsnprintf */
182 #define slprintf snprintf
183
184
185 #ifndef HAVE_VA_COPY
186 #ifdef HAVE___VA_COPY
187 #define va_copy(dest, src) __va_copy(dest, src)
188 #else
189 #define va_copy(dest, src) (dest) = (src)
190 #endif
191 #endif
192
193 #ifndef HAVE_VOLATILE
194 #define volatile
195 #endif
196
197 #ifndef HAVE_COMPARISON_FN_T
198 typedef int (*comparison_fn_t)(const void *, const void *);
199 #endif
200
201 /* Load header file for dynamic linking stuff */
202 #ifdef HAVE_DLFCN_H
203 #include <dlfcn.h>
204 #endif
205
206 #ifndef RTLD_LAZY
207 #define RTLD_LAZY 0
208 #endif
209
210 #ifndef HAVE_SECURE_MKSTEMP
211 #define mkstemp(path) rep_mkstemp(path)
212 int rep_mkstemp(char *temp);
213 #endif
214
215 #ifndef HAVE_MKDTEMP
216 #define mkdtemp rep_mkdtemp
217 char *rep_mkdtemp(char *template);
218 #endif
219
220 #ifdef HAVE_LIMITS_H
221 #include <limits.h>
222 #endif
223
224 /* The extra casts work around common compiler bugs.  */
225 #define _TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
226 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
227    It is necessary at least when t == time_t.  */
228 #define _TYPE_MINIMUM(t) ((t) (_TYPE_SIGNED (t) \
229                               ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
230 #define _TYPE_MAXIMUM(t) ((t) (~ (t) 0 - _TYPE_MINIMUM (t)))
231
232 #ifndef HOST_NAME_MAX
233 #define HOST_NAME_MAX 64
234 #endif
235
236 #ifndef UINT16_MAX
237 #define UINT16_MAX 65535
238 #endif
239
240 #ifndef UINT32_MAX
241 #define UINT32_MAX (4294967295U)
242 #endif
243
244 #ifndef UINT64_MAX
245 #define UINT64_MAX ((uint64_t)-1)
246 #endif
247
248 #ifndef CHAR_BIT
249 #define CHAR_BIT 8
250 #endif
251
252 #ifndef INT32_MAX
253 #define INT32_MAX _TYPE_MAXIMUM(int32_t)
254 #endif
255
256 #ifdef HAVE_STDBOOL_H
257 #include <stdbool.h>
258 #elif !defined(HAVE_BOOL)
259 #define __bool_true_false_are_defined
260 typedef int bool;
261 #define false (0)
262 #define true (1)
263 #endif
264
265 #ifndef HAVE_FUNCTION_MACRO
266 #ifdef HAVE_func_MACRO
267 #define __FUNCTION__ __func__
268 #else
269 #define __FUNCTION__ ("")
270 #endif
271 #endif
272
273 #ifdef HAVE_SYS_PARAM_H
274 #include <sys/param.h>
275 #endif
276
277 #ifndef MIN
278 #define MIN(a,b) ((a)<(b)?(a):(b))
279 #endif
280
281 #ifndef MAX
282 #define MAX(a,b) ((a)>(b)?(a):(b))
283 #endif
284
285 #ifndef __STRING
286 #define __STRING(x)    #x
287 #endif
288
289
290
291 #endif