mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-22 20:51:32 +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;
|