mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-11 12:32:35 +02:00
10 lines
179 B
PHP
10 lines
179 B
PHP
Uses Dos;
|
|
|
|
{ Declared EXPLICITLY with Ansistring, so NO mistaking is possible }
|
|
|
|
Function Getenv (Var EnvVar : AnsiString): AnsiString;
|
|
|
|
begin
|
|
Result:=Dos.Getenv(EnvVar);
|
|
end;
|