Function EnvStr (Index: integer) : string;
EnvStr returns the Index-th Name=Value pair from the list of environment variables.
The index of the first pair is zero.
The length is limited to 255 characters. This may cause problems under LINUX. The LINUX unit solves this problem.
Program Example13; uses Dos; { Program to demonstrate the EnvCount and EnvStr function. } var i : Longint; begin WriteLn('Current Environment is:'); for i:=1to EnvCount do WriteLn(EnvStr(i)); end.