$darkmode
Qore Programming Language Reference Manual 1.18.0
ql_env.dox.h
1
3namespace Qore {
8
10
27*string getenv(string var);
28
30
37nothing getenv();
38
40
58int setenv(string env, softstring val);
59
61
68nothing setenv();
69
71
88int unsetenv(string env);
89
91
98nothing unsetenv();
99
101}
int unsetenv(string env)
Unsets an environment variable.
*string getenv(string var)
Retrieves the value of an environment variable or NOTHING if the variable is not set.
int setenv(string env, softstring val)
Sets an environment variable to a value.
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3