localtime64() — Convert Time
Format
#include <time.h>
struct tm *localtime64(const time64_t *timeval);
Language Level
ILE C Extension
Threadsafe
No
Use localtime64_r()
instead.
Locale Sensitive
The behavior of this function might be affected by the LC_TOD category of the current locale.
Description
The localtime64()
function
converts a time value, in seconds, to a structure of type tm.
The localtime64()
function takes a timeval assumed
to be Universal Coordinate Time (UTC) and converts it to job locale
time. For this conversion, localtime64()
checks the
current locale setting for local time zone and daylight saving time
(DST). If these values are not set in the current locale, localtime64()
gets
the local time zone and daylight saving time (DST) settings from the
current job. Once converted, the time is returned in a structure of
type tm. If the DST is set in the locale but the time zone
information is not, the DST information in the locale is ignored.
time64()
function.
- The
gmtime64()
andlocaltime64()
functions might use a common, statically allocated buffer for the conversion. Each call to one of these functions might alter the result of the previous call. Theasctime_r()
,ctime64_r()
,gmtime64_r()
andlocaltime64_r()
functions do not use a common, statically allocated buffer. These functions can be used in place of theasctime()
,ctime64()
,gmtime64()
, andlocaltime64()
functions if thread safety is desired. - Calendar time is the number of seconds that have elapsed since EPOCH, which is 00:00:00, January 1, 1970 Universal Coordinate Time (UTC).
- The supported date and time range for this function is 01/01/0001 00:00: 00 through 12/31/9999 23: 59: 59.
Return Value
The localtime64()
function
returns a pointer to the structure result. If the given timeval is
out of range, a NULL pointer is returned and errno is set to EOVERFLOW.
Example
#include <stdio.h>
#include <time.h>
int main(void)
{
struct tm *newtime;
time64_t ltime;
ltime = time64(<ime);
newtime = localtime64(<ime);
printf("The date and time is %s", asctime(newtime));
}
/************** If the local time is 3 p.m. February 15, 2008, **********
************************* the output should be: *********************
The date and time is Fri Feb 15 15:00:00 2008
*/
Related Information
- asctime() — Convert Time to Character String
- asctime_r() — Convert Time to Character String (Restartable)
- ctime() — Convert Time to Character String
- ctime64() — Convert Time to Character String
- ctime64_r() — Convert Time to Character String (Restartable)
- ctime_r() — Convert Time to Character String (Restartable)
- gmtime() — Convert Time
- gmtime64() — Convert Time
- gmtime64_r() — Convert Time (Restartable)
- gmtime_r() — Convert Time (Restartable)
- localtime() — Convert Time
- localtime64_r() — Convert Time (Restartable)
- localtime_r() — Convert Time (Restartable)
- mktime() — Convert Local Time
- mktime64() — Convert Local Time
- setlocale() — Set Locale
- time() — Determine Current Time
- time64() — Determine Current Time
- <time.h>