D - How can I get access to environment?
- New (1/1) Oct 21 2002 How can I get access to environment?
- Russell Lewis (5/8) Oct 22 2002 In UNIX, you can call the standard C functions, getevnv() and setenv().
New wrote:How can I get access to environment?In UNIX, you can call the standard C functions, getevnv() and setenv(). Their declarations are (so you don't have to port an entire C header): char *getenv(char *name); int setenv(char *name,char *value,int overwrite);
Oct 22 2002