[Overview][Constants][Types][Procedures and functions][Variables] | Reference for unit 'oldlinux' (#rtl) |
Return the system date
Source position: oldlinux.pp line 1323
procedure GetDate( |
var Year: Word; |
var Month: Word; |
var Day: Word |
); |
Returns the current date.
None
|
Return the current unix time |
|
|
Return current system time |
|
|
Return system date and time |
|
|
Convert epoch time to local time |
Program Example6; { Program to demonstrate the GetDate function. } Uses oldlinux; Var Year, Month, Day : Word; begin GetDate (Year, Month, Day); Writeln ('Date : ',Day:2,'/',Month:2,'/',Year:4); end.
No notes exist for this page yet.