nulib.c.stdlib

Bindings to C standard library core functions.

Members

Functions

_Exit
noreturn _Exit(int status)
abort
noreturn abort()
atexit
int atexit(void function() func)
atof
double atof(const(char)* str)

Converts given string to double.

atoi
int atoi(const(char)* str)

Converts given string to int.

atoll
long atoll(const(char)* str)

Converts given string to long.

exit
noreturn exit(int status)
getenv
char* getenv(char* name)
rand
int rand()

These two were added to Bionic in Lollipop.

srand
void srand(uint seed)
system
int system(char* string)

Meta

Authors

Luna Nielsen