Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/GetLinuxTime
- Timestamp:
- 02/01/21 09:38:44 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/GetLinuxTime
v4 v5 12 12 == Return Value == 13 13 14 This function returns a time_t value. time_t is an integer number of seconds since January 1, 1970 midnight. This can be useful to store date/time values in a database using this integer to facilitate indexing and sorting.14 This function sets the global g_datetime structure based on the current Linux time. This function also returns a time_t value. time_t is an integer number of seconds since January 1, 1970 midnight. This can be useful to store date/time values in a database using this integer to facilitate indexing and sorting. 15 15 16 16 == Remarks == … … 25 25 }}} 26 26 27 {{{ 28 time_t now = GetLinuxTime(); 29 // Now is an integer seconds since January 1, 1970 midnight 30 }}} 27 31 28 32 == See Also ==