Returns the program environment variables.
These are the same arguments passed as an array to the C main function:
___ extern (C) void main (char** argv, int argc, char** envp) {} ___
Same as the above envp.
Return: the program environment variables as a pointer to an array of null terminated C strings
See Implementation
Returns the program environment variables.
These are the same arguments passed as an array to the C main function:
___ extern (C) void main (char** argv, int argc, char** envp) {} ___
Same as the above envp.
Return: the program environment variables as a pointer to an array of null terminated C strings