[Overview][Constants][Types][Procedures and functions][Variables] | Reference for unit 'oldlinux' (#rtl) |
Return the current unix time
Source position: oldlinux.pp line 1317
function GetEpochTime: LongInt; |
returns the number of seconds since 00:00:00 gmt, january 1, 1970. it is adjusted to the local time zone, but not to DST.
no errors
|
Convert epoch time to local time |
|
|
Return current system time |
Program Example1; { Program to demonstrate the GetEpochTime function. } Uses oldlinux; begin Write ('Secs past the start of the Epoch (00:00 1/1/1980) : '); Writeln (GetEpochTime); end.
No notes exist for this page yet.