r13577: Move some (possibly system-defined) defines to replace.h
[jelmer/samba4-debian.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    
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 #ifndef HAVE_STRERROR
39 extern char *sys_errlist[];
40 #define strerror(i) sys_errlist[i]
41 #endif
42
43 #ifndef HAVE_ERRNO_DECL
44 extern int errno;
45 #endif
46
47 #ifndef HAVE_STRDUP
48 char *strdup(const char *s);
49 #endif
50
51 #ifndef HAVE_MEMMOVE
52 void *memmove(void *dest,const void *src,int size);
53 #endif
54
55 #ifndef HAVE_MKTIME
56 time_t mktime(struct tm *t);
57 #endif
58
59 #ifndef HAVE_STRLCPY
60 size_t strlcpy(char *d, const char *s, size_t bufsize);
61 #endif
62
63 #ifndef HAVE_STRLCAT
64 size_t strlcat(char *d, const char *s, size_t bufsize);
65 #endif
66
67 #ifndef HAVE_STRNDUP
68 char *strndup(const char *s, size_t n);
69 #endif
70
71 #ifndef HAVE_STRNLEN
72 size_t strnlen(const char *s, size_t n);
73 #endif
74
75 #ifndef HAVE_STRTOUL
76 unsigned long strtoul(const char *nptr, char **endptr, int base);
77 #endif
78
79 #ifndef HAVE_SETENV
80 int setenv(const char *name, const char *value, int overwrite); 
81 #endif
82
83 #ifndef HAVE_RENAME
84 int rename(const char *zfrom, const char *zto);
85 #endif
86
87 #ifndef HAVE_STRCASESTR
88 char *strcasestr(const char *haystack, const char *needle);
89 #endif
90
91 #ifndef HAVE_FTRUNCATE
92 int ftruncate(int f,long l);
93 #endif
94
95 #ifndef HAVE_VASPRINTF_DECL
96 int vasprintf(char **ptr, const char *format, va_list ap);
97 #endif
98
99 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
100 #define bzero(a,b) memset((a),'\0',(b))
101 #endif
102
103 #ifndef PRINTF_ATTRIBUTE
104 #if !defined(NO_PRINTF_ATTRIBUTE) && (__GNUC__ >= 3)
105 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
106  * the parameter containing the format, and a2 the index of the first
107  * argument. Note that some gcc 2.x versions don't handle this
108  * properly **/
109 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
110 #else
111 #define PRINTF_ATTRIBUTE(a1, a2)
112 #endif
113 #endif
114
115 /* add varargs prototypes with printf checking */
116 #ifndef HAVE_SNPRINTF_DECL
117 int snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
118 #endif
119 #ifndef HAVE_ASPRINTF_DECL
120 int asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
121 #endif
122
123
124 /* we used to use these fns, but now we have good replacements
125    for snprintf and vsnprintf */
126 #define slprintf snprintf
127
128
129 #ifdef HAVE_VA_COPY
130 #define VA_COPY(dest, src) va_copy(dest, src)
131 #elif defined(HAVE___VA_COPY)
132 #define VA_COPY(dest, src) __va_copy(dest, src)
133 #else
134 #define VA_COPY(dest, src) (dest) = (src)
135 #endif
136
137 #if defined(HAVE_VOLATILE)
138 #define VOLATILE volatile
139 #else
140 #define VOLATILE
141 #endif
142
143 #ifndef HAVE_COMPARISON_FN_T
144 typedef int (*comparison_fn_t)(const void *, const void *);
145 #endif
146
147 /* Load header file for dynamic linking stuff */
148 #ifdef HAVE_DLFCN_H
149 #include <dlfcn.h>
150 #endif
151
152 #ifndef RTLD_LAZY
153 #define RTLD_LAZY 0
154 #endif
155
156 #ifndef HAVE_SECURE_MKSTEMP
157 #define mkstemp(path) rep_mkstemp(path)
158 int rep_mkstemp(char *temp);
159 #endif
160
161 #ifdef HAVE_LIMITS_H
162 #include <limits.h>
163 #endif
164
165 /* The extra casts work around common compiler bugs.  */
166 #define _TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
167 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
168    It is necessary at least when t == time_t.  */
169 #define _TYPE_MINIMUM(t) ((t) (_TYPE_SIGNED (t) \
170                               ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
171 #define _TYPE_MAXIMUM(t) ((t) (~ (t) 0 - _TYPE_MINIMUM (t)))
172
173 #ifndef HOST_NAME_MAX
174 #define HOST_NAME_MAX 64
175 #endif
176
177 #ifndef UINT16_MAX
178 #define UINT16_MAX 65535
179 #endif
180
181 #ifndef UINT32_MAX
182 #define UINT32_MAX (4294967295U)
183 #endif
184
185 #ifndef UINT64_MAX
186 #define UINT64_MAX ((uint64_t)-1)
187 #endif
188
189 #ifndef CHAR_BIT
190 #define CHAR_BIT 8
191 #endif
192
193 #ifndef INT32_MAX
194 #define INT32_MAX _TYPE_MAXIMUM(int32_t)
195 #endif
196
197 #endif