0efd5cc4321a0af7a450da8f954aabaaca0a2494
[reactos.git] / include / crt / stdlib.h
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the w64 mingw-runtime package.
4 * No warranty is given; refer to the file DISCLAIMER within this package.
5 */
6 #ifndef _INC_STDLIB
7 #define _INC_STDLIB
8
9 #include <crtdefs.h>
10 #include <limits.h>
11
12 #pragma pack(push,_CRT_PACKING)
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17
18 #ifndef NULL
19 #ifdef __cplusplus
20 #define NULL 0
21 #else
22 #define NULL ((void *)0)
23 #endif
24 #endif
25
26 #define EXIT_SUCCESS 0
27 #define EXIT_FAILURE 1
28
29 #ifndef _ONEXIT_T_DEFINED
30 #define _ONEXIT_T_DEFINED
31
32 typedef int (__cdecl *_onexit_t)(void);
33
34 #ifndef NO_OLDNAMES
35 #define onexit_t _onexit_t
36 #endif
37 #endif
38
39 #ifndef _DIV_T_DEFINED
40 #define _DIV_T_DEFINED
41
42 typedef struct _div_t {
43 int quot;
44 int rem;
45 } div_t;
46
47 typedef struct _ldiv_t {
48 long quot;
49 long rem;
50 } ldiv_t;
51 #endif
52
53 #ifndef _CRT_DOUBLE_DEC
54 #define _CRT_DOUBLE_DEC
55
56 #pragma pack(4)
57 typedef struct {
58 unsigned char ld[10];
59 } _LDOUBLE;
60 #pragma pack()
61
62 #define _PTR_LD(x) ((unsigned char *)(&(x)->ld))
63
64 typedef struct {
65 double x;
66 } _CRT_DOUBLE;
67
68 typedef struct {
69 float f;
70 } _CRT_FLOAT;
71 #if __MINGW_GNUC_PREREQ(4,4)
72 #pragma push_macro("long")
73 #undef long
74 #endif
75
76 typedef struct {
77 long double x;
78 } _LONGDOUBLE;
79
80 #if __MINGW_GNUC_PREREQ(4,4)
81 #pragma pop_macro("long")
82 #endif
83
84 #pragma pack(4)
85 typedef struct {
86 unsigned char ld12[12];
87 } _LDBL12;
88 #pragma pack()
89 #endif
90
91 #define RAND_MAX 0x7fff
92
93 #ifndef MB_CUR_MAX
94 #define MB_CUR_MAX ___mb_cur_max_func()
95 #ifndef __mb_cur_max
96 #ifdef _MSVCRT_
97 extern int __mb_cur_max;
98 #else
99 #define __mb_cur_max (*_imp____mb_cur_max)
100 extern int *_imp____mb_cur_max;
101 #endif
102 #endif
103 #ifdef _MSVCRT_
104 extern int __mbcur_max;
105 #define ___mb_cur_max_func() (__mb_cur_max)
106 #else
107 extern int* _imp____mbcur_max;
108 #define ___mb_cur_max_func() (*_imp____mb_cur_max)
109 #endif
110 #endif
111
112 #define __max(a,b) (((a) > (b)) ? (a) : (b))
113 #define __min(a,b) (((a) < (b)) ? (a) : (b))
114
115 #define _MAX_PATH 260
116 #define _MAX_DRIVE 3
117 #define _MAX_DIR 256
118 #define _MAX_FNAME 256
119 #define _MAX_EXT 256
120
121 #define _OUT_TO_DEFAULT 0
122 #define _OUT_TO_STDERR 1
123 #define _OUT_TO_MSGBOX 2
124 #define _REPORT_ERRMODE 3
125
126 #define _WRITE_ABORT_MSG 0x1
127 #define _CALL_REPORTFAULT 0x2
128
129 #define _MAX_ENV 32767
130
131 typedef void (__cdecl *_purecall_handler)(void);
132
133 _CRTIMP _purecall_handler __cdecl _set_purecall_handler(_purecall_handler _Handler);
134 _CRTIMP _purecall_handler __cdecl _get_purecall_handler(void);
135
136 typedef void (__cdecl *_invalid_parameter_handler)(const wchar_t *,const wchar_t *,const wchar_t *,unsigned int,uintptr_t);
137 _invalid_parameter_handler __cdecl _set_invalid_parameter_handler(_invalid_parameter_handler _Handler);
138 _invalid_parameter_handler __cdecl _get_invalid_parameter_handler(void);
139
140 #ifndef _CRT_ERRNO_DEFINED
141 #define _CRT_ERRNO_DEFINED
142 _CRTIMP extern int *__cdecl _errno(void);
143 #define errno (*_errno())
144 errno_t __cdecl _set_errno(int _Value);
145 errno_t __cdecl _get_errno(int *_Value);
146 #endif
147 _CRTIMP unsigned long *__cdecl __doserrno(void);
148 #define _doserrno (*__doserrno())
149 errno_t __cdecl _set_doserrno(unsigned long _Value);
150 errno_t __cdecl _get_doserrno(unsigned long *_Value);
151
152 _CRTIMP extern char *_sys_errlist[];
153 _CRTIMP extern int _sys_nerr;
154
155 //#if !defined(__x86_64)
156 _CRTIMP int *__cdecl __p___argc(void);
157 _CRTIMP char ***__cdecl __p___argv(void);
158 _CRTIMP wchar_t ***__cdecl __p___wargv(void);
159 _CRTIMP char ***__cdecl __p__environ(void);
160 _CRTIMP wchar_t ***__cdecl __p__wenviron(void);
161 _CRTIMP char **__cdecl __p__pgmptr(void);
162 _CRTIMP wchar_t **__cdecl __p__wpgmptr(void);
163 //#endif
164 #ifndef __argc
165 #ifdef _MSVCRT_
166 extern int __argc;
167 #else
168 #define __argc (*_imp____argc)
169 extern int *_imp____argc;
170 #endif
171 #endif
172 #ifndef __argv
173 #ifdef _MSVCRT_
174 extern char **__argv;
175 #else
176 #define __argv (*_imp____argv)
177 extern char ***_imp____argv;
178 #endif
179 #endif
180 #ifndef __wargv
181 #ifdef _MSVCRT_
182 extern wchar_t **__wargv;
183 #else
184 #define __wargv (*_imp____wargv)
185 extern wchar_t ***_imp____wargv;
186 #endif
187 #endif
188
189 #ifdef _POSIX_
190 extern char **environ;
191 #else
192 #ifndef _environ
193 #ifdef _MSVCRT_
194 extern char **_environ;
195 #else
196 #define _environ (*_imp___environ)
197 extern char ***_imp___environ;
198 #endif
199 #endif
200
201 #ifndef _wenviron
202 #ifdef _MSVCRT_
203 extern wchar_t **_wenviron;
204 #else
205 #define _wenviron (*_imp___wenviron)
206 extern wchar_t ***_imp___wenviron;
207 #endif
208 #endif
209 #endif
210 #ifndef _pgmptr
211 #ifdef _MSVCRT_
212 extern char *_pgmptr;
213 #else
214 #define _pgmptr (*_imp___pgmptr)
215 extern char **_imp___pgmptr;
216 #endif
217 #endif
218
219 #ifndef _wpgmptr
220 #ifdef _MSVCRT_
221 extern wchar_t *_wpgmptr;
222 #else
223 #define _wpgmptr (*_imp___wpgmptr)
224 extern wchar_t **_imp___wpgmptr;
225 #endif
226 #endif
227 errno_t __cdecl _get_pgmptr(char **_Value);
228 errno_t __cdecl _get_wpgmptr(wchar_t **_Value);
229 #ifndef _fmode
230 #ifdef _MSVCRT_
231 extern int _fmode;
232 #else
233 #define _fmode (*_imp___fmode)
234 extern int *_imp___fmode;
235 #endif
236 #endif
237 _CRTIMP errno_t __cdecl _set_fmode(int _Mode);
238 _CRTIMP errno_t __cdecl _get_fmode(int *_PMode);
239
240 #ifndef _osplatform
241 #ifdef _MSVCRT_
242 extern unsigned int _osplatform;
243 #else
244 #define _osplatform (*_imp___osplatform)
245 extern unsigned int *_imp___osplatform;
246 #endif
247 #endif
248
249 #ifndef _osver
250 #ifdef _MSVCRT_
251 extern unsigned int _osver;
252 #else
253 #define _osver (*_imp___osver)
254 extern unsigned int *_imp___osver;
255 #endif
256 #endif
257
258 #ifndef _winver
259 #ifdef _MSVCRT_
260 extern unsigned int _winver;
261 #else
262 #define _winver (*_imp___winver)
263 extern unsigned int *_imp___winver;
264 #endif
265 #endif
266
267 #ifndef _winmajor
268 #ifdef _MSVCRT_
269 extern unsigned int _winmajor;
270 #else
271 #define _winmajor (*_imp___winmajor)
272 extern unsigned int *_imp___winmajor;
273 #endif
274 #endif
275
276 #ifndef _winminor
277 #ifdef _MSVCRT_
278 extern unsigned int _winminor;
279 #else
280 #define _winminor (*_imp___winminor)
281 extern unsigned int *_imp___winminor;
282 #endif
283 #endif
284
285 errno_t __cdecl _get_osplatform(unsigned int *_Value);
286 errno_t __cdecl _get_osver(unsigned int *_Value);
287 errno_t __cdecl _get_winver(unsigned int *_Value);
288 errno_t __cdecl _get_winmajor(unsigned int *_Value);
289 errno_t __cdecl _get_winminor(unsigned int *_Value);
290 #ifndef _countof
291 #ifndef __cplusplus
292 #define _countof(_Array) (sizeof(_Array) / sizeof(_Array[0]))
293 #else
294 extern "C++" {
295 template <typename _CountofType,size_t _SizeOfArray>
296 char (*__countof_helper(/*UNALIGNED*/ _CountofType (&_Array)[_SizeOfArray]))[_SizeOfArray];
297 #define _countof(_Array) sizeof(*__countof_helper(_Array))
298 }
299 #endif
300 #endif
301
302 #ifndef _CRT_TERMINATE_DEFINED
303 #define _CRT_TERMINATE_DEFINED
304 __declspec(noreturn) void __cdecl exit(int _Code);
305 _CRTIMP __declspec(noreturn) void __cdecl _exit(int _Code);
306 #if !defined __NO_ISOCEXT /* extern stub in static libmingwex.a */
307 /* C99 function name */
308 __declspec(noreturn) void __cdecl _Exit(int); /* Declare to get noreturn attribute. */
309 __CRT_INLINE void __cdecl _Exit(int status)
310 { _exit(status); }
311 #endif
312 #if __MINGW_GNUC_PREREQ(4,4)
313 #pragma push_macro("abort")
314 #undef abort
315 #endif
316 __declspec(noreturn) void __cdecl abort(void);
317 #if __MINGW_GNUC_PREREQ(4,4)
318 #pragma pop_macro("abort")
319 #endif
320 #endif
321
322 _CRTIMP unsigned int __cdecl _set_abort_behavior(unsigned int _Flags,unsigned int _Mask);
323
324 #ifndef _CRT_ABS_DEFINED
325 #define _CRT_ABS_DEFINED
326 int __cdecl abs(int _X);
327 long __cdecl labs(long _X);
328 #endif
329
330 #if _INTEGRAL_MAX_BITS >= 64
331 __MINGW_EXTENSION __int64 __cdecl _abs64(__int64);
332 #endif
333 int __cdecl atexit(void (__cdecl *)(void));
334 #ifndef _CRT_ATOF_DEFINED
335 #define _CRT_ATOF_DEFINED
336 double __cdecl atof(const char *_String);
337 double __cdecl _atof_l(const char *_String,_locale_t _Locale);
338 #endif
339 int __cdecl atoi(const char *_Str);
340 _CRTIMP int __cdecl _atoi_l(const char *_Str,_locale_t _Locale);
341 long __cdecl atol(const char *_Str);
342 _CRTIMP long __cdecl _atol_l(const char *_Str,_locale_t _Locale);
343 #ifndef _CRT_ALGO_DEFINED
344 #define _CRT_ALGO_DEFINED
345 void *__cdecl bsearch(const void *_Key,const void *_Base,size_t _NumOfElements,size_t _SizeOfElements,int (__cdecl *_PtFuncCompare)(const void *,const void *));
346 void __cdecl qsort(void *_Base,size_t _NumOfElements,size_t _SizeOfElements,int (__cdecl *_PtFuncCompare)(const void *,const void *));
347 #endif
348
349 #if !defined(__GNUC__) && !defined(__clang)
350 unsigned short __cdecl _byteswap_ushort(unsigned short _Short);
351 unsigned long __cdecl _byteswap_ulong (unsigned long _Long);
352 #if _INTEGRAL_MAX_BITS >= 64
353 __MINGW_EXTENSION unsigned __int64 __cdecl _byteswap_uint64(unsigned __int64 _Int64);
354 #endif
355 #endif
356
357 div_t __cdecl div(int _Numerator,int _Denominator);
358 char *__cdecl getenv(const char *_VarName);
359 _CRTIMP char *__cdecl _itoa(int _Value,char *_Dest,int _Radix);
360 #if _INTEGRAL_MAX_BITS >= 64
361 __MINGW_EXTENSION _CRTIMP char *__cdecl _i64toa(__int64 _Val,char *_DstBuf,int _Radix);
362 __MINGW_EXTENSION _CRTIMP char *__cdecl _ui64toa(unsigned __int64 _Val,char *_DstBuf,int _Radix);
363 __MINGW_EXTENSION _CRTIMP __int64 __cdecl _atoi64(const char *_String);
364 __MINGW_EXTENSION _CRTIMP __int64 __cdecl _atoi64_l(const char *_String,_locale_t _Locale);
365 __MINGW_EXTENSION _CRTIMP __int64 __cdecl _strtoi64(const char *_String,char **_EndPtr,int _Radix);
366 __MINGW_EXTENSION _CRTIMP __int64 __cdecl _strtoi64_l(const char *_String,char **_EndPtr,int _Radix,_locale_t _Locale);
367 __MINGW_EXTENSION _CRTIMP unsigned __int64 __cdecl _strtoui64(const char *_String,char **_EndPtr,int _Radix);
368 __MINGW_EXTENSION _CRTIMP unsigned __int64 __cdecl _strtoui64_l(const char *_String,char **_EndPtr,int _Radix,_locale_t _Locale);
369 #endif
370 ldiv_t __cdecl ldiv(long _Numerator,long _Denominator);
371 _CRTIMP char *__cdecl _ltoa(long _Value,char *_Dest,int _Radix);
372 int __cdecl mblen(const char *_Ch,size_t _MaxCount);
373 _CRTIMP int __cdecl _mblen_l(const char *_Ch,size_t _MaxCount,_locale_t _Locale);
374 _CRTIMP size_t __cdecl _mbstrlen(const char *_Str);
375 _CRTIMP size_t __cdecl _mbstrlen_l(const char *_Str,_locale_t _Locale);
376 _CRTIMP size_t __cdecl _mbstrnlen(const char *_Str,size_t _MaxCount);
377 _CRTIMP size_t __cdecl _mbstrnlen_l(const char *_Str,size_t _MaxCount,_locale_t _Locale);
378 int __cdecl mbtowc(wchar_t *_DstCh,const char *_SrcCh,size_t _SrcSizeInBytes);
379 _CRTIMP int __cdecl _mbtowc_l(wchar_t *_DstCh,const char *_SrcCh,size_t _SrcSizeInBytes,_locale_t _Locale);
380 size_t __cdecl mbstowcs(wchar_t *_Dest,const char *_Source,size_t _MaxCount);
381 _CRTIMP size_t __cdecl _mbstowcs_l(wchar_t *_Dest,const char *_Source,size_t _MaxCount,_locale_t _Locale);
382 int __cdecl rand(void);
383 _CRTIMP int __cdecl _set_error_mode(int _Mode);
384 void __cdecl srand(unsigned int _Seed);
385 double __cdecl strtod(const char *_Str,char **_EndPtr);
386 float __cdecl strtof(const char *nptr, char **endptr);
387 #if !defined __NO_ISOCEXT /* in libmingwex.a */
388 float __cdecl strtof (const char * __restrict__, char ** __restrict__);
389 long double __cdecl strtold(const char * __restrict__, char ** __restrict__);
390 #endif /* __NO_ISOCEXT */
391 _CRTIMP double __cdecl _strtod_l(const char *_Str,char **_EndPtr,_locale_t _Locale);
392 long __cdecl strtol(const char *_Str,char **_EndPtr,int _Radix);
393 _CRTIMP long __cdecl _strtol_l(const char *_Str,char **_EndPtr,int _Radix,_locale_t _Locale);
394 unsigned long __cdecl strtoul(const char *_Str,char **_EndPtr,int _Radix);
395 _CRTIMP unsigned long __cdecl _strtoul_l(const char *_Str,char **_EndPtr,int _Radix,_locale_t _Locale);
396 #ifndef _CRT_SYSTEM_DEFINED
397 #define _CRT_SYSTEM_DEFINED
398 int __cdecl system(const char *_Command);
399 #endif
400 _CRTIMP char *__cdecl _ultoa(unsigned long _Value,char *_Dest,int _Radix);
401 int __cdecl wctomb(char *_MbCh,wchar_t _WCh);
402 _CRTIMP int __cdecl _wctomb_l(char *_MbCh,wchar_t _WCh,_locale_t _Locale);
403 size_t __cdecl wcstombs(char *_Dest,const wchar_t *_Source,size_t _MaxCount);
404 _CRTIMP size_t __cdecl _wcstombs_l(char *_Dest,const wchar_t *_Source,size_t _MaxCount,_locale_t _Locale);
405
406 #ifndef _CRT_ALLOCATION_DEFINED
407 #define _CRT_ALLOCATION_DEFINED
408 void *__cdecl calloc(size_t _NumOfElements,size_t _SizeOfElements);
409 void __cdecl free(void *_Memory);
410 void *__cdecl malloc(size_t _Size);
411 void *__cdecl realloc(void *_Memory,size_t _NewSize);
412 _CRTIMP void *__cdecl _recalloc(void *_Memory,size_t _Count,size_t _Size);
413 //_CRTIMP void __cdecl _aligned_free(void *_Memory);
414 //_CRTIMP void *__cdecl _aligned_malloc(size_t _Size,size_t _Alignment);
415 _CRTIMP void *__cdecl _aligned_offset_malloc(size_t _Size,size_t _Alignment,size_t _Offset);
416 _CRTIMP void *__cdecl _aligned_realloc(void *_Memory,size_t _Size,size_t _Alignment);
417 _CRTIMP void *__cdecl _aligned_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment);
418 _CRTIMP void *__cdecl _aligned_offset_realloc(void *_Memory,size_t _Size,size_t _Alignment,size_t _Offset);
419 _CRTIMP void *__cdecl _aligned_offset_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment,size_t _Offset);
420 #endif
421
422 #ifndef _WSTDLIB_DEFINED
423 #define _WSTDLIB_DEFINED
424
425 _CRTIMP wchar_t *__cdecl _itow(int _Value,wchar_t *_Dest,int _Radix);
426 _CRTIMP wchar_t *__cdecl _ltow(long _Value,wchar_t *_Dest,int _Radix);
427 _CRTIMP wchar_t *__cdecl _ultow(unsigned long _Value,wchar_t *_Dest,int _Radix);
428 double __cdecl wcstod(const wchar_t *_Str,wchar_t **_EndPtr);
429 float __cdecl wcstof(const wchar_t *nptr, wchar_t **endptr);
430 #if !defined __NO_ISOCEXT /* in libmingwex.a */
431 float __cdecl wcstof( const wchar_t * __restrict__, wchar_t ** __restrict__);
432 long double __cdecl wcstold(const wchar_t * __restrict__, wchar_t ** __restrict__);
433 #endif /* __NO_ISOCEXT */
434 _CRTIMP double __cdecl _wcstod_l(const wchar_t *_Str,wchar_t **_EndPtr,_locale_t _Locale);
435 long __cdecl wcstol(const wchar_t *_Str,wchar_t **_EndPtr,int _Radix);
436 _CRTIMP long __cdecl _wcstol_l(const wchar_t *_Str,wchar_t **_EndPtr,int _Radix,_locale_t _Locale);
437 unsigned long __cdecl wcstoul(const wchar_t *_Str,wchar_t **_EndPtr,int _Radix);
438 _CRTIMP unsigned long __cdecl _wcstoul_l(const wchar_t *_Str,wchar_t **_EndPtr,int _Radix,_locale_t _Locale);
439 _CRTIMP wchar_t *__cdecl _wgetenv(const wchar_t *_VarName);
440 #ifndef _CRT_WSYSTEM_DEFINED
441 #define _CRT_WSYSTEM_DEFINED
442 _CRTIMP int __cdecl _wsystem(const wchar_t *_Command);
443 #endif
444 _CRTIMP double __cdecl _wtof(const wchar_t *_Str);
445 _CRTIMP double __cdecl _wtof_l(const wchar_t *_Str,_locale_t _Locale);
446 _CRTIMP int __cdecl _wtoi(const wchar_t *_Str);
447 _CRTIMP int __cdecl _wtoi_l(const wchar_t *_Str,_locale_t _Locale);
448 _CRTIMP long __cdecl _wtol(const wchar_t *_Str);
449 _CRTIMP long __cdecl _wtol_l(const wchar_t *_Str,_locale_t _Locale);
450
451 #if _INTEGRAL_MAX_BITS >= 64
452 __MINGW_EXTENSION _CRTIMP wchar_t *__cdecl _i64tow(__int64 _Val,wchar_t *_DstBuf,int _Radix);
453 __MINGW_EXTENSION _CRTIMP wchar_t *__cdecl _ui64tow(unsigned __int64 _Val,wchar_t *_DstBuf,int _Radix);
454 __MINGW_EXTENSION _CRTIMP __int64 __cdecl _wtoi64(const wchar_t *_Str);
455 __MINGW_EXTENSION _CRTIMP __int64 __cdecl _wtoi64_l(const wchar_t *_Str,_locale_t _Locale);
456 __MINGW_EXTENSION _CRTIMP __int64 __cdecl _wcstoi64(const wchar_t *_Str,wchar_t **_EndPtr,int _Radix);
457 __MINGW_EXTENSION _CRTIMP __int64 __cdecl _wcstoi64_l(const wchar_t *_Str,wchar_t **_EndPtr,int _Radix,_locale_t _Locale);
458 __MINGW_EXTENSION _CRTIMP unsigned __int64 __cdecl _wcstoui64(const wchar_t *_Str,wchar_t **_EndPtr,int _Radix);
459 __MINGW_EXTENSION _CRTIMP unsigned __int64 __cdecl _wcstoui64_l(const wchar_t *_Str ,wchar_t **_EndPtr,int _Radix,_locale_t _Locale);
460 #endif
461 #endif
462
463 #ifndef _POSIX_
464 #define _CVTBUFSIZE (309+40)
465 _CRTIMP char *__cdecl _fullpath(char *_FullPath,const char *_Path,size_t _SizeInBytes);
466 _CRTIMP char *__cdecl _ecvt(double _Val,int _NumOfDigits,int *_PtDec,int *_PtSign);
467 _CRTIMP char *__cdecl _fcvt(double _Val,int _NumOfDec,int *_PtDec,int *_PtSign);
468 _CRTIMP char *__cdecl _gcvt(double _Val,int _NumOfDigits,char *_DstBuf);
469 _CRTIMP int __cdecl _atodbl(_CRT_DOUBLE *_Result,char *_Str);
470 _CRTIMP int __cdecl _atoldbl(_LDOUBLE *_Result,char *_Str);
471 _CRTIMP int __cdecl _atoflt(_CRT_FLOAT *_Result,char *_Str);
472 _CRTIMP int __cdecl _atodbl_l(_CRT_DOUBLE *_Result,char *_Str,_locale_t _Locale);
473 _CRTIMP int __cdecl _atoldbl_l(_LDOUBLE *_Result,char *_Str,_locale_t _Locale);
474 _CRTIMP int __cdecl _atoflt_l(_CRT_FLOAT *_Result,char *_Str,_locale_t _Locale);
475 unsigned long __cdecl _lrotl(unsigned long _Val,int _Shift);
476 unsigned long __cdecl _lrotr(unsigned long _Val,int _Shift);
477 _CRTIMP void __cdecl _makepath(char *_Path,const char *_Drive,const char *_Dir,const char *_Filename,const char *_Ext);
478 _onexit_t __cdecl _onexit(_onexit_t _Func);
479
480 #ifndef _CRT_PERROR_DEFINED
481 #define _CRT_PERROR_DEFINED
482 void __cdecl perror(const char *_ErrMsg);
483 #endif
484 _CRTIMP int __cdecl _putenv(const char *_EnvString);
485 #if !defined(__GNUC__) && !defined(__clang)
486 unsigned int __cdecl _rotl(unsigned int _Val,int _Shift);
487 #if _INTEGRAL_MAX_BITS >= 64
488 __MINGW_EXTENSION unsigned __int64 __cdecl _rotl64(unsigned __int64 _Val,int _Shift);
489 #endif
490 unsigned int __cdecl _rotr(unsigned int _Val,int _Shift);
491 #if _INTEGRAL_MAX_BITS >= 64
492 __MINGW_EXTENSION unsigned __int64 __cdecl _rotr64(unsigned __int64 _Val,int _Shift);
493 #endif
494 #endif
495 _CRTIMP void __cdecl _searchenv(const char *_Filename,const char *_EnvVar,char *_ResultPath);
496 _CRTIMP void __cdecl _splitpath(const char *_FullPath,char *_Drive,char *_Dir,char *_Filename,char *_Ext);
497 _CRTIMP void __cdecl _swab(char *_Buf1,char *_Buf2,int _SizeInBytes);
498
499 #ifndef _WSTDLIBP_DEFINED
500 #define _WSTDLIBP_DEFINED
501 _CRTIMP wchar_t *__cdecl _wfullpath(wchar_t *_FullPath,const wchar_t *_Path,size_t _SizeInWords);
502 _CRTIMP void __cdecl _wmakepath(wchar_t *_ResultPath,const wchar_t *_Drive,const wchar_t *_Dir,const wchar_t *_Filename,const wchar_t *_Ext);
503 #ifndef _CRT_WPERROR_DEFINED
504 #define _CRT_WPERROR_DEFINED
505 _CRTIMP void __cdecl _wperror(const wchar_t *_ErrMsg);
506 #endif
507 _CRTIMP int __cdecl _wputenv(const wchar_t *_EnvString);
508 _CRTIMP void __cdecl _wsearchenv(const wchar_t *_Filename,const wchar_t *_EnvVar,wchar_t *_ResultPath);
509 _CRTIMP void __cdecl _wsplitpath(const wchar_t *_FullPath,wchar_t *_Drive,wchar_t *_Dir,wchar_t *_Filename,wchar_t *_Ext);
510 #endif
511
512 _CRTIMP void __cdecl _beep(unsigned _Frequency,unsigned _Duration) __MINGW_ATTRIB_DEPRECATED;
513 /* Not to be confused with _set_error_mode (int). */
514 _CRTIMP void __cdecl _seterrormode(int _Mode) __MINGW_ATTRIB_DEPRECATED;
515 _CRTIMP void __cdecl _sleep(unsigned long _Duration) __MINGW_ATTRIB_DEPRECATED;
516 #endif
517
518 #ifndef NO_OLDNAMES
519 #ifndef _POSIX_
520 #if 0
521 #ifndef __cplusplus
522 #ifndef NOMINMAX
523 #ifndef max
524 #define max(a,b) (((a) > (b)) ? (a) : (b))
525 #endif
526 #ifndef min
527 #define min(a,b) (((a) < (b)) ? (a) : (b))
528 #endif
529 #endif
530 #endif
531 #endif
532
533 #define sys_errlist _sys_errlist
534 #define sys_nerr _sys_nerr
535 #define environ _environ
536 _CRTIMP char *__cdecl ecvt(double _Val,int _NumOfDigits,int *_PtDec,int *_PtSign);
537 _CRTIMP char *__cdecl fcvt(double _Val,int _NumOfDec,int *_PtDec,int *_PtSign);
538 _CRTIMP char *__cdecl gcvt(double _Val,int _NumOfDigits,char *_DstBuf);
539 _CRTIMP char *__cdecl itoa(int _Val,char *_DstBuf,int _Radix);
540 _CRTIMP char *__cdecl ltoa(long _Val,char *_DstBuf,int _Radix);
541 _CRTIMP int __cdecl putenv(const char *_EnvString);
542 _CRTIMP void __cdecl swab(char *_Buf1,char *_Buf2,int _SizeInBytes);
543 _CRTIMP char *__cdecl ultoa(unsigned long _Val,char *_Dstbuf,int _Radix);
544 onexit_t __cdecl onexit(onexit_t _Func);
545 #endif
546 #endif
547
548 #if !defined __NO_ISOCEXT /* externs in static libmingwex.a */
549
550 __MINGW_EXTENSION typedef struct { long long quot, rem; } lldiv_t;
551
552 __MINGW_EXTENSION lldiv_t __cdecl lldiv(long long, long long);
553
554 __MINGW_EXTENSION __CRT_INLINE long long __cdecl llabs(long long _j) { return (_j >= 0 ? _j : -_j); }
555
556 __MINGW_EXTENSION long long __cdecl strtoll(const char* __restrict__, char** __restrict, int);
557 __MINGW_EXTENSION unsigned long long __cdecl strtoull(const char* __restrict__, char** __restrict__, int);
558
559 /* these are stubs for MS _i64 versions */
560 __MINGW_EXTENSION long long __cdecl atoll (const char *);
561
562 #ifndef __STRICT_ANSI__
563 __MINGW_EXTENSION long long __cdecl wtoll (const wchar_t *);
564 __MINGW_EXTENSION char *__cdecl lltoa (long long, char *, int);
565 __MINGW_EXTENSION char *__cdecl ulltoa (unsigned long long , char *, int);
566 __MINGW_EXTENSION wchar_t *__cdecl lltow (long long, wchar_t *, int);
567 __MINGW_EXTENSION wchar_t *__cdecl ulltow (unsigned long long, wchar_t *, int);
568
569 /* __CRT_INLINE using non-ansi functions */
570 __MINGW_EXTENSION __CRT_INLINE long long __cdecl atoll (const char * _c) { return _atoi64 (_c); }
571 __MINGW_EXTENSION __CRT_INLINE char *__cdecl lltoa (long long _n, char * _c, int _i) { return _i64toa (_n, _c, _i); }
572 __MINGW_EXTENSION __CRT_INLINE char *__cdecl ulltoa (unsigned long long _n, char * _c, int _i) { return _ui64toa (_n, _c, _i); }
573 __MINGW_EXTENSION __CRT_INLINE long long __cdecl wtoll (const wchar_t * _w) { return _wtoi64 (_w); }
574 __MINGW_EXTENSION __CRT_INLINE wchar_t *__cdecl lltow (long long _n, wchar_t * _w, int _i) { return _i64tow (_n, _w, _i); }
575 __MINGW_EXTENSION __CRT_INLINE wchar_t *__cdecl ulltow (unsigned long long _n, wchar_t * _w, int _i) { return _ui64tow (_n, _w, _i); }
576 #endif /* (__STRICT_ANSI__) */
577
578 #endif /* !__NO_ISOCEXT */
579
580 #ifdef __cplusplus
581 }
582 #endif
583
584 #pragma pack(pop)
585
586 #include <sec_api/stdlib_s.h>
587 #endif