1 /**
2  * D header file for C99.
3  *
4  * $(C_HEADER_DESCRIPTION pubs.opengroup.org/onlinepubs/009695399/basedefs/_stdlib.h.html, _stdlib.h)
5  *
6  * Copyright: Copyright Sean Kelly 2005 - 2014.
7  * License: Distributed under the
8  *      $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
9  *    (See accompanying file LICENSE)
10  * Authors:   Sean Kelly
11  * Standards: ISO/IEC 9899:1999 (E)
12  * Source: $(DRUNTIMESRC src/core/stdc/_stdlib.d)
13  */
14 
15 module core.stdc.stdlib;
16 
17 private import core.stdc.config;
18 public import core.stdc.stddef; // for wchar_t
19 
20 version (OSX)
21     version = Darwin;
22 else version (iOS)
23     version = Darwin;
24 else version (TVOS)
25     version = Darwin;
26 else version (WatchOS)
27     version = Darwin;
28 
29 extern (C):
30 @system:
31 
32 /* Placed outside `nothrow` and `@nogc` in order to not constrain what the callback does.
33  */
34 ///
35 alias _compare_fp_t = int function(const void*, const void*);
36 
37 nothrow:
38 @nogc:
39 
40 ///
41 inout(void)* bsearch(const void* key, inout(void)* base, size_t nmemb, size_t size, _compare_fp_t compar);
42 ///
43 void    qsort(void* base, size_t nmemb, size_t size, _compare_fp_t compar);
44 
45 // https://issues.dlang.org/show_bug.cgi?id=17188
46 @system unittest
47 {
48     struct S
49     {
cmpS50         extern(C) static int cmp(const void*, const void*) { return 0; }
51     }
52     int[4] arr;
53     qsort(arr.ptr, arr[0].sizeof, arr.length, &S.cmp);
54     int key;
55     bsearch(&key, arr.ptr, arr[0].sizeof, arr.length, &S.cmp);
56 }
57 
58 ///
59 struct div_t
60 {
61     int quot,
62         rem;
63 }
64 
65 ///
66 struct ldiv_t
67 {
68     int quot,
69         rem;
70 }
71 
72 ///
73 struct lldiv_t
74 {
75     long quot,
76          rem;
77 }
78 
79 ///
80 enum EXIT_SUCCESS = 0;
81 ///
82 enum EXIT_FAILURE = 1;
83 ///
84 enum MB_CUR_MAX   = 1;
85 
86 ///
87 version (Windows)      enum RAND_MAX = 0x7fff;
88 else version (CRuntime_Glibc)  enum RAND_MAX = 0x7fffffff;
89 else version (Darwin)  enum RAND_MAX = 0x7fffffff;
90 else version (FreeBSD) enum RAND_MAX = 0x7ffffffd;
91 else version (NetBSD)  enum RAND_MAX = 0x7fffffff;
92 else version (OpenBSD) enum RAND_MAX = 0x7fffffff;
93 else version (DragonFlyBSD) enum RAND_MAX = 0x7fffffff;
94 else version (Solaris) enum RAND_MAX = 0x7fff;
95 else version (CRuntime_Bionic) enum RAND_MAX = 0x7fffffff;
96 else version (CRuntime_Musl) enum RAND_MAX = 0x7fffffff;
97 else version (CRuntime_UClibc) enum RAND_MAX = 0x7fffffff;
98 else static assert( false, "Unsupported platform" );
99 
100 ///
101 double  atof(scope const char* nptr);
102 ///
103 int     atoi(scope const char* nptr);
104 ///
105 c_long  atol(scope const char* nptr);
106 ///
107 long    atoll(scope const char* nptr);
108 
109 ///
110 double  strtod(scope inout(char)* nptr, scope inout(char)** endptr);
111 ///
112 float   strtof(scope inout(char)* nptr, scope inout(char)** endptr);
113 ///
114 c_long  strtol(scope inout(char)* nptr, scope inout(char)** endptr, int base);
115 ///
116 long    strtoll(scope inout(char)* nptr, scope inout(char)** endptr, int base);
117 ///
118 c_ulong strtoul(scope inout(char)* nptr, scope inout(char)** endptr, int base);
119 ///
120 ulong   strtoull(scope inout(char)* nptr, scope inout(char)** endptr, int base);
121 
version(CRuntime_Microsoft)122 version (CRuntime_Microsoft)
123 {
124     // strtold exists starting from VS2013, so we give it D linkage to avoid link errors
125     ///
126     extern (D) real strtold(scope inout(char)* nptr, inout(char)** endptr)
127     {   // Fake it 'till we make it
128         return strtod(nptr, endptr);
129     }
130 }
version(MinGW)131 else version (MinGW)
132 {
133     ///
134     real __mingw_strtold(scope inout(char)* nptr, scope inout(char)** endptr);
135     ///
136     alias __mingw_strtold strtold;
137 }
138 else
139 {
140     /// Added to Bionic since Lollipop.
141     real strtold(scope inout(char)* nptr, scope inout(char)** endptr);
142 }
143 
144 // No unsafe pointer manipulation.
145 @trusted
146 {
147     /// These two were added to Bionic in Lollipop.
148     int     rand();
149     ///
150     void    srand(uint seed);
151 }
152 
153 // We don't mark these @trusted. Given that they return a void*, one has
154 // to do a pointer cast to do anything sensible with the result. Thus,
155 // functions using these already have to be @trusted, allowing them to
156 // call @system stuff anyway.
157 ///
158 void*   malloc(size_t size);
159 ///
160 void*   calloc(size_t nmemb, size_t size);
161 ///
162 void*   realloc(void* ptr, size_t size);
163 ///
164 void    free(void* ptr);
165 
166 ///
167 void    abort() @safe;
168 ///
169 void    exit(int status);
170 ///
171 int     atexit(void function() func);
172 ///
173 void    _Exit(int status);
174 
175 ///
176 char*   getenv(scope const char* name);
177 ///
178 int     system(scope const char* string);
179 
180 // These only operate on integer values.
181 @trusted
182 {
183     ///
184     pure int     abs(int j);
185     ///
186     pure c_long  labs(c_long j);
187     ///
188     pure long    llabs(long j);
189 
190     ///
191     div_t   div(int numer, int denom);
192     ///
193     ldiv_t  ldiv(c_long numer, c_long denom);
194     ///
195     lldiv_t lldiv(long numer, long denom);
196 }
197 
198 ///
199 int     mblen(scope const char* s, size_t n);
200 ///
201 int     mbtowc(scope wchar_t* pwc, scope const char* s, size_t n);
202 ///
203 int     wctomb(scope char* s, wchar_t wc);
204 ///
205 size_t  mbstowcs(scope wchar_t* pwcs, scope const char* s, size_t n);
206 ///
207 size_t  wcstombs(scope char* s, scope const wchar_t* pwcs, size_t n);
208 
209 ///
version(DigitalMars)210 version (DigitalMars)
211 {
212     // See malloc comment about @trusted.
213     void* alloca(size_t size) pure; // non-standard
214 }
version(GNU)215 else version (GNU)
216 {
217     void* alloca(size_t size) pure; // compiler intrinsic
218 }
version(LDC)219 else version (LDC)
220 {
221     pragma(LDC_alloca)
222     void* alloca(size_t size) pure;
223 }
224 
version(CRuntime_Microsoft)225 version (CRuntime_Microsoft)
226 {
227     ///
228     ulong  _strtoui64(scope inout(char)*, scope inout(char)**,int);
229     ///
230     ulong  _wcstoui64(scope inout(wchar)*, scope inout(wchar)**,int);
231 
232     ///
233     long  _strtoi64(scope inout(char)*, scope inout(char)**,int);
234     ///
235     long  _wcstoi64(scope inout(wchar)*, scope inout(wchar)**,int);
236 }
237