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