Exemplo n.º 1
0
struct tm *pivotal_localtime_r (const time_t * now, const time_t * _t, struct tm *p)
{
    double tl;
    tl = *_t;
    return _localtime64_r (now, &tl, p);
}
Exemplo n.º 2
0
struct tm *localtime64_r (const double *_t, struct tm *p)
{
    double tl;
    tl = *_t;
    return _localtime64_r (NULL, &tl, p);
}
Exemplo n.º 3
0
struct tm *localtime64_r (const time64_t * _t, struct tm *p)
{
    time64_t tl;
    tl = *_t;
    return _localtime64_r (NULL, &tl, p);
}