msvcrt: Implement _set_errno.
[wine] / include / msvcrt / stdlib.h
1 /*
2  * Standard library definitions
3  *
4  * Derived from the mingw header written by Colin Peters.
5  * Modified for Wine use by Jon Griffiths and Francois Gouget.
6  * This file is in the public domain.
7  */
8 #ifndef __WINE_STDLIB_H
9 #define __WINE_STDLIB_H
10
11 #include <crtdefs.h>
12
13 #include <pshpack8.h>
14
15 #ifndef NULL
16 #ifdef __cplusplus
17 #define NULL  0
18 #else
19 #define NULL  ((void*)0)
20 #endif
21 #endif
22
23 typedef struct
24 {
25     float f;
26 } _CRT_FLOAT;
27
28 typedef struct
29 {
30     double x;
31 } _CRT_DOUBLE;
32
33 typedef struct
34 {
35     unsigned char ld[10];
36 } _LDOUBLE;
37
38 #define EXIT_SUCCESS        0
39 #define EXIT_FAILURE        -1
40 #define RAND_MAX            0x7FFF
41
42 #ifndef _MAX_PATH
43 #define _MAX_DRIVE          3
44 #define _MAX_FNAME          256
45 #define _MAX_DIR            _MAX_FNAME
46 #define _MAX_EXT            _MAX_FNAME
47 #define _MAX_PATH           260
48 #endif
49
50 /* Make the secure string functions (names end in "_s") truncate their output */
51 #define _TRUNCATE  ((size_t)-1)
52
53 typedef struct _div_t {
54     int quot;
55     int rem;
56 } div_t;
57
58 typedef struct _ldiv_t {
59     __msvcrt_long quot;
60     __msvcrt_long rem;
61 } ldiv_t;
62
63 #define __max(a,b) (((a) > (b)) ? (a) : (b))
64 #define __min(a,b) (((a) < (b)) ? (a) : (b))
65 #ifndef __cplusplus
66 #define max(a,b)   (((a) > (b)) ? (a) : (b))
67 #define min(a,b)   (((a) < (b)) ? (a) : (b))
68 #endif
69
70 /* _set_error_mode() constants */
71 #define _OUT_TO_DEFAULT      0
72 #define _OUT_TO_STDERR       1
73 #define _OUT_TO_MSGBOX       2
74 #define _REPORT_ERRMODE      3
75
76
77 #ifdef __cplusplus
78 extern "C" {
79 #endif
80
81 #ifdef __i386__
82
83 extern unsigned int* __cdecl __p__osver(void);
84 #define _osver             (*__p__osver())
85 extern unsigned int* __cdecl __p__winver(void);
86 #define _winver            (*__p__winver())
87 extern unsigned int* __cdecl __p__winmajor(void);
88 #define _winmajor          (*__p__winmajor())
89 extern unsigned int* __cdecl __p__winminor(void);
90 #define _winminor          (*__p__winminor())
91 extern int*          __cdecl __p___argc(void);
92 #define __argc             (*__p___argc())
93 extern char***       __cdecl __p___argv(void);
94 #define __argv             (*__p___argv())
95 extern wchar_t***    __cdecl __p___wargv(void);
96 #define __wargv            (*__p___wargv())
97 extern char***       __cdecl __p__environ(void);
98 #define _environ           (*__p__environ())
99 extern wchar_t***    __cdecl __p__wenviron(void);
100 #define _wenviron          (*__p__wenviron())
101 extern unsigned int* __cdecl __p__fmode(void);
102 #define _fmode             (*__p__fmode())
103
104 #else  /* __i386__ */
105
106 extern unsigned int _osver;
107 extern unsigned int _winver;
108 extern unsigned int _winmajor;
109 extern unsigned int _winminor;
110 extern int __argc;
111 extern char **__argv;
112 extern wchar_t **__wargv;
113 extern char **_environ;
114 extern wchar_t **_wenviron;
115 extern unsigned int _fmode;
116
117 #endif  /* __i386__ */
118
119 extern int*           __cdecl ___mb_cur_max_func(void);
120 #define __mb_cur_max        (*___mb_cur_max_func())
121 extern __msvcrt_ulong* __cdecl __doserrno(void);
122 #define _doserrno           (*__doserrno())
123 extern int*           __cdecl _errno(void);
124 #define errno               (*_errno())
125
126 /* FIXME: We need functions to access these:
127  * int _sys_nerr;
128  * char** _sys_errlist;
129  */
130
131 errno_t       __cdecl _get_doserrno(int*);
132 errno_t       __cdecl _get_errno(int*);
133 errno_t       __cdecl _set_errno(int);
134
135 typedef int (__cdecl *_onexit_t)(void);
136
137
138 int           __cdecl _atodbl(_CRT_DOUBLE*,char*);
139 int           __cdecl _atoflt(_CRT_FLOAT*,char*);
140 __int64       __cdecl _atoi64(const char*);
141 long double   __cdecl _atold(const char*);
142 int           __cdecl _atoldbl(_LDOUBLE*,char*);
143 void          __cdecl _beep(unsigned int,unsigned int);
144 char*         __cdecl _ecvt(double,int,int*,int*);
145 char*         __cdecl _fcvt(double,int,int*,int*);
146 char*         __cdecl _fullpath(char*,const char*,size_t);
147 char*         __cdecl _gcvt(double,int,char*);
148 char*         __cdecl _i64toa(__int64,char*,int);
149 char*         __cdecl _itoa(int,char*,int);
150 char*         __cdecl _ltoa(__msvcrt_long,char*,int);
151 __msvcrt_ulong __cdecl _lrotl(__msvcrt_ulong,int);
152 __msvcrt_ulong __cdecl _lrotr(__msvcrt_ulong,int);
153 void          __cdecl _makepath(char*,const char*,const char*,const char*,const char*);
154 int           __cdecl _makepath_s(char*,size_t,const char*,const char*,const char*,const char*);
155 size_t        __cdecl _mbstrlen(const char*);
156 _onexit_t     __cdecl _onexit(_onexit_t);
157 int           __cdecl _putenv(const char*);
158 unsigned int  __cdecl _rotl(unsigned int,int);
159 unsigned int  __cdecl _rotr(unsigned int,int);
160 void          __cdecl _searchenv(const char*,const char*,char*);
161 int           __cdecl _set_error_mode(int);
162 void          __cdecl _seterrormode(int);
163 void          __cdecl _sleep(__msvcrt_ulong);
164 void          __cdecl _splitpath(const char*,char*,char*,char*,char*);
165 long double   __cdecl _strtold(const char*,char**);
166 void          __cdecl _swab(char*,char*,int);
167 char*         __cdecl _ui64toa(unsigned __int64,char*,int);
168 errno_t       __cdecl _ui64toa_s(unsigned __int64,char*,size_t,int);
169 char*         __cdecl _ultoa(__msvcrt_ulong,char*,int);
170
171 void          __cdecl _exit(int);
172 void          __cdecl abort(void);
173 int           __cdecl abs(int);
174 int           __cdecl atexit(void (*)(void));
175 double        __cdecl atof(const char*);
176 int           __cdecl atoi(const char*);
177 __msvcrt_long __cdecl atol(const char*);
178 void*         __cdecl calloc(size_t,size_t);
179 #ifndef __i386__
180 div_t  __cdecl div(int,int);
181 ldiv_t __cdecl ldiv(__msvcrt_long,__msvcrt_long);
182 #endif
183 void          __cdecl exit(int);
184 void          __cdecl free(void*);
185 char*         __cdecl getenv(const char*);
186 __msvcrt_long __cdecl labs(__msvcrt_long);
187 void*         __cdecl malloc(size_t);
188 int           __cdecl mblen(const char*,size_t);
189 void          __cdecl perror(const char*);
190 int           __cdecl rand(void);
191 errno_t       __cdecl rand_s(unsigned int*);
192 void*         __cdecl realloc(void*,size_t);
193 void          __cdecl srand(unsigned int);
194 double        __cdecl strtod(const char*,char**);
195 __msvcrt_long __cdecl strtol(const char*,char**,int);
196 __msvcrt_ulong __cdecl strtoul(const char*,char**,int);
197 int           __cdecl system(const char*);
198 void*         __cdecl bsearch(const void*,const void*,size_t,size_t,int (*)(const void*,const void*));
199 void          __cdecl qsort(void*,size_t,size_t,int (*)(const void*,const void*));
200
201 #ifndef _WSTDLIB_DEFINED
202 #define _WSTDLIB_DEFINED
203 wchar_t*      __cdecl _itow(int,wchar_t*,int);
204 wchar_t*      __cdecl _i64tow(__int64,wchar_t*,int);
205 wchar_t*      __cdecl _ltow(__msvcrt_long,wchar_t*,int);
206 wchar_t*      __cdecl _ui64tow(unsigned __int64,wchar_t*,int);
207 wchar_t*      __cdecl _ultow(__msvcrt_ulong,wchar_t*,int);
208 wchar_t*      __cdecl _wfullpath(wchar_t*,const wchar_t*,size_t);
209 wchar_t*      __cdecl _wgetenv(const wchar_t*);
210 void          __cdecl _wmakepath(wchar_t*,const wchar_t*,const wchar_t*,const wchar_t*,const wchar_t*);
211 int           __cdecl _wmakepath_s(wchar_t*,size_t,const wchar_t*,const wchar_t*,const wchar_t*,const wchar_t*);
212 void          __cdecl _wperror(const wchar_t*);
213 int           __cdecl _wputenv(const wchar_t*);
214 void          __cdecl _wsearchenv(const wchar_t*,const wchar_t*,wchar_t*);
215 void          __cdecl _wsplitpath(const wchar_t*,wchar_t*,wchar_t*,wchar_t*,wchar_t*);
216 errno_t       __cdecl _wsplitpath_s(const wchar_t*,wchar_t*,size_t,wchar_t*,size_t,
217                                        wchar_t*,size_t,wchar_t*,size_t);
218 int           __cdecl _wsystem(const wchar_t*);
219 double        __cdecl _wtof(const wchar_t*);
220 int           __cdecl _wtoi(const wchar_t*);
221 __int64       __cdecl _wtoi64(const wchar_t*);
222 __msvcrt_long __cdecl _wtol(const wchar_t*);
223
224 size_t        __cdecl mbstowcs(wchar_t*,const char*,size_t);
225 errno_t       __cdecl mbstowcs_s(size_t*,wchar_t*,size_t,const char*,size_t);
226 int           __cdecl mbtowc(wchar_t*,const char*,size_t);
227 double        __cdecl wcstod(const wchar_t*,wchar_t**);
228 __msvcrt_long __cdecl wcstol(const wchar_t*,wchar_t**,int);
229 size_t        __cdecl wcstombs(char*,const wchar_t*,size_t);
230 errno_t       __cdecl wcstombs_s(size_t*,char*,size_t,const wchar_t*,size_t);
231 __msvcrt_ulong __cdecl wcstoul(const wchar_t*,wchar_t**,int);
232 int           __cdecl wctomb(char*,wchar_t);
233 #endif /* _WSTDLIB_DEFINED */
234
235 typedef void (__cdecl *_invalid_parameter_handler)(const wchar_t*, const wchar_t*, const wchar_t*, unsigned, uintptr_t);
236 _invalid_parameter_handler __cdecl _set_invalid_parameter_handler(_invalid_parameter_handler);
237 _invalid_parameter_handler __cdecl _get_invalid_parameter_handler(void);
238 void __cdecl _invalid_parameter(const wchar_t *expr, const wchar_t *func, const wchar_t *file,
239                                 unsigned int line, uintptr_t arg);
240
241 #ifdef __cplusplus
242 }
243 #endif
244
245
246 #define environ _environ
247 #define onexit_t _onexit_t
248
249 static inline char* ecvt(double value, int ndigit, int* decpt, int* sign) { return _ecvt(value, ndigit, decpt, sign); }
250 static inline char* fcvt(double value, int ndigit, int* decpt, int* sign) { return _fcvt(value, ndigit, decpt, sign); }
251 static inline char* gcvt(double value, int ndigit, char* buf) { return _gcvt(value, ndigit, buf); }
252 static inline char* itoa(int value, char* str, int radix) { return _itoa(value, str, radix); }
253 static inline char* ltoa(__msvcrt_long value, char* str, int radix) { return _ltoa(value, str, radix); }
254 static inline _onexit_t onexit(_onexit_t func) { return _onexit(func); }
255 static inline int putenv(const char* str) { return _putenv(str); }
256 static inline void swab(char* src, char* dst, int len) { _swab(src, dst, len); }
257 static inline char* ultoa(__msvcrt_ulong value, char* str, int radix) { return _ultoa(value, str, radix); }
258
259 #ifdef __i386__
260 static inline div_t __wine_msvcrt_div(int num, int denom)
261 {
262     extern unsigned __int64 div(int,int);
263     div_t ret;
264     unsigned __int64 res = div(num,denom);
265     ret.quot = (int)res;
266     ret.rem  = (int)(res >> 32);
267     return ret;
268 }
269 static inline ldiv_t __wine_msvcrt_ldiv(__msvcrt_long num, __msvcrt_long denom)
270 {
271     extern unsigned __int64 ldiv(__msvcrt_long,__msvcrt_long);
272     ldiv_t ret;
273     unsigned __int64 res = ldiv(num,denom);
274     ret.quot = (__msvcrt_long)res;
275     ret.rem  = (__msvcrt_long)(res >> 32);
276     return ret;
277 }
278 #define div(num,denom) __wine_msvcrt_div(num,denom)
279 #define ldiv(num,denom) __wine_msvcrt_ldiv(num,denom)
280 #endif
281
282 #include <poppack.h>
283
284 #endif /* __WINE_STDLIB_H */