K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / lib / perl / 5.18.2 / CORE /
server ip : 172.67.156.115

your ip : 172.70.100.72

H O M E


Filename/usr/lib/perl/5.18.2/CORE/time64.h
Size1.4 kb
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 10:10
Last modified21-Nov-2018 01:28
Last accessed07-Jul-2025 03:08
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
#include <time.h>
#include "time64_config.h"

#ifndef TIME64_H
# define TIME64_H


/* Set our custom types */
typedef INT_64_T Int64;
typedef Int64 Time64_T;
typedef I32 Year;


/* A copy of the tm struct but with a 64 bit year */
struct TM64 {
int tm_sec;
int tm_min;
int tm_hour;
int tm_mday;
int tm_mon;
Year tm_year;
int tm_wday;
int tm_yday;
int tm_isdst;

#ifdef HAS_TM_TM_GMTOFF
long tm_gmtoff;
#endif

#ifdef HAS_TM_TM_ZONE
# ifdef __GLIBC__
const char *tm_zone;
# else
char *tm_zone;
# endif
#endif
};


/* Decide which tm struct to use */
#ifdef USE_TM64
#define TM TM64
#else
#define TM tm
#endif


/* Declare functions */
static struct TM *S_gmtime64_r (const Time64_T *, struct TM *);
static struct TM *S_localtime64_r (const Time64_T *, struct TM *);
static Time64_T S_timegm64 (struct TM *);


/* Not everyone has gm/localtime_r(), provide a replacement */
#ifdef HAS_LOCALTIME_R
# define LOCALTIME_R(clock, result) (L_R_TZSET localtime_r(clock, result))
#else
# define LOCALTIME_R(clock, result) (L_R_TZSET S_localtime_r(clock, result))
#endif
#ifdef HAS_GMTIME_R
# define GMTIME_R(clock, result) gmtime_r(clock, result)
#else
# define GMTIME_R(clock, result) S_gmtime_r(clock, result)
#endif

#endif