www.digitalmars.com         C & C++   DMDScript  

D - How can I get access to environment?

reply New <New_member pathlink.com> writes:
How can I get access to environment?
Oct 21 2002
parent Russell Lewis <spamhole-2001-07-16 deming-os.org> writes:
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