[Overview][Constants][Types][Procedures and functions][Variables] | Reference for unit 'oldlinux' (#rtl) |
Return system date and time
Source position: oldlinux.pp line 1324
procedure GetDateTime( |
var Year: Word; |
var Month: Word; |
var Day: Word; |
var hour: Word; |
var minute: Word; |
var second: Word |
); |
Returns the current date and time. The time is corrected for the local time zone. This procedure is equivalent to the GetDate and GetTime calls.
None
|
Return the current unix time |
|
|
Return current system time |
|
|
Convert epoch time to local time |
|
|
Return the system date |
Program Example6; { Program to demonstrate the GetDateTime function. } Uses oldlinux; Var Year, Month, Day, Hour, min, sec : Word; begin GetDateTime (Year, Month, Day, Hour, min, sec); Writeln ('Date : ',Day:2,'/',Month:2,'/',Year:4); Writeln ('Time : ',Hour:2,':',Min:2,':',Sec:2); end.
No notes exist for this page yet.