Method putenv()
- Method
putenv
void
putenv(string
varname
,void
|string
value
)- Description
Sets the environment variable
varname
tovalue
.If
value
is omitted or zero, the environment variablevarname
is removed.varname
andvalue
cannot be wide strings nor contain'\0'
characters.varname
also cannot contain'='
characters.- Note
On NT the environment variable name is case insensitive.
- See also