[Overview][Constants][Types][Procedures and functions][Index] Reference for unit 'BaseUnix' (#rtl)

FpGetEnv

Return value of environment variable.

Declaration

Source position: bunxh.inc line 110

function FpGetEnv(

  name: PChar

):PChar;

function FpGetEnv(

  name: string

):PChar;

Description

FPGetEnv returns the value of the environment variable in Name. If the variable is not defined, nil is returned. The value of the environment variable may be the empty string. A PChar is returned to accomodate for strings longer than 255 bytes, TERMCAP and LS_COLORS, for instance.

Errors

None.

Example

Program Example41;

{ Program to demonstrate the GetEnv function. }

Uses BaseUnix;

begin
  Writeln ('Path is : ',fpGetenv('PATH'));
end.

Documentation generated on: Nov 14 2015