Report a bug
		
				If you spot a problem with this page, click here to create a Bugzilla issue.
		
			Improve this page
		
			Quickly fork, edit online, and submit a pull request for this page.
			Requires a signed-in GitHub account. This works well for small changes.
			If you'd like to make larger changes you may want to consider using
			a local clone.
		
	dmd.root.env
Functions for modifying environment variables.
License: 
Source env.d
Documentation https://dlang.org/phobos/dmd_root_env.html
- nothrow boolputenvRestorable(const(char)[]name, const(char)[]value);
- Construct a variable fromnameandvalueand put it in the environment while saving the previous value of the environment variable into a global list so it can be restored later.Parameters:const(char)[] namethe name of the variable const(char)[] valuethe value of the variable Returns:true on error, false on success
- nothrow stringallocNameValue(const(char)[]name, const(char)[]value);
- Allocate a new variable via xmalloc that can be added to the global environment. The resulting string will be null-terminated immediately after the end of the array.Parameters:const(char)[] namename of the variable const(char)[] valuevalue of the variable Returns:a newly allocated variable that can be added to the global environment
- nothrow voidrestoreEnvVars();
- Restore the original environment.
- nothrow voidsaveEnvVar(const(char)[]name);
- Save the environment variablenameif not saved already.
Copyright © 1999-2025 by the D Language Foundation | Page generated by
Ddoc on Mon Mar 31 10:27:38 2025