r10438: Move portability functions to lib/replace/; replace now simply ensures
[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_VASPRINTF_DECL
84 int vasprintf(char **ptr, const char *format, va_list ap);
85 #endif
86
87 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
88 #define bzero(a,b) memset((a),'\0',(b))
89 #endif
90
91 #ifndef PRINTF_ATTRIBUTE
92 #if !defined(NO_PRINTF_ATTRIBUTE) && (__GNUC__ >= 3)
93 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
94  * the parameter containing the format, and a2 the index of the first
95  * argument. Note that some gcc 2.x versions don't handle this
96  * properly **/
97 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
98 #else
99 #define PRINTF_ATTRIBUTE(a1, a2)
100 #endif
101 #endif
102
103 /* add varargs prototypes with printf checking */
104 #ifndef HAVE_SNPRINTF_DECL
105 int snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
106 #endif
107 #ifndef HAVE_ASPRINTF_DECL
108 int asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
109 #endif
110
111
112 /* we used to use these fns, but now we have good replacements
113    for snprintf and vsnprintf */
114 #define slprintf snprintf
115
116
117 #ifdef HAVE_VA_COPY
118 #define VA_COPY(dest, src) va_copy(dest, src)
119 #elif defined(HAVE___VA_COPY)
120 #define VA_COPY(dest, src) __va_copy(dest, src)
121 #else
122 #define VA_COPY(dest, src) (dest) = (src)
123 #endif
124
125 #if defined(HAVE_VOLATILE)
126 #define VOLATILE volatile
127 #else
128 #define VOLATILE
129 #endif
130
131 #ifndef HAVE_COMPARISON_FN_T
132 typedef int (*comparison_fn_t)(const void *, const void *);
133 #endif
134
135 #ifndef HAVE_U_INT32_T
136 typedef unsigned u_int32_t;
137 #endif
138
139 #ifndef HAVE_U_INT16_T
140 typedef unsigned short u_int16_t;
141 #endif
142
143 #ifndef HAVE_U_INT8_T
144 typedef unsigned char u_int8_t;
145 #endif
146
147 #ifndef HAVE_SOCKLEN_T
148 #define socklen_t int
149 #define HAVE_SOCKLEN_T 1
150 #endif
151
152 #ifdef HAVE_DLFCN_H
153 #include <dlfcn.h>
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 #endif