Function GetEnv (EnvVar: String) : String;
Getenv returns the value of the environment variable EnvVar. Under LINUX, case is important when looking for EnvVar.
When there is no environment variable EnvVar defined, an empty string is returned.
None.
Program Example14; uses Dos; { Program to demonstrate the GetEnv function. } begin WriteLn('Current PATH is ',GetEnv('PATH')); end.