License
Distributed under the
Boost Software License 1.0.
(See accompanying file LICENSE)
Standards
ISO/IEC 9899:1999 (E)
Source: core/stdc/_stdlib.d
D header file for C99.
(See accompanying file LICENSE)
Source: core/stdc/_stdlib.d
int quotc_long quotlong quotinout(void) * bsearch(const void * key, inout(void) * base, size_t nmemb, size_t size, _compare_fp_t compar)void qsort(void * base, size_t nmemb, size_t size, _compare_fp_t compar)double atof(scope const char * nptr)int atoi(scope const char * nptr)c_long atol(scope const char * nptr)long atoll(scope const char * nptr)double strtod(scope inout(char) * nptr, scope inout(char) * * endptr)float strtof(scope inout(char) * nptr, scope inout(char) * * endptr)c_long strtol(scope inout(char) * nptr, scope inout(char) * * endptr, int base)long strtoll(scope inout(char) * nptr, scope inout(char) * * endptr, int base)c_ulong strtoul(scope inout(char) * nptr, scope inout(char) * * endptr, int base)ulong strtoull(scope inout(char) * nptr, scope inout(char) * * endptr, int base)void srand(uint seed)void * malloc(size_t size)void * calloc(size_t nmemb, size_t size)void * realloc(void * ptr, size_t size)void free(void * ptr)noreturn exit(int status)int atexit(void function() func)noreturn _Exit(int status)char * getenv(scope const char * name)int system(scope const char * string)div_t div(int numer, int denom)ldiv_t ldiv(c_long numer, c_long denom)lldiv_t lldiv(long numer, long denom)int mblen(scope const char * s, size_t n)int mbtowc(scope wchar_t * pwc, scope const char * s, size_t n)int wctomb(scope char * s, wchar_t wc)size_t mbstowcs(scope wchar_t * pwcs, scope const char * s, size_t n)size_t wcstombs(scope char * s, scope const wchar_t * pwcs, size_t n)EXIT_SUCCESS = 0EXIT_FAILURE = 1MB_CUR_MAX = 1