25 #if defined __cplusplus 26 #define __STDC_LIMIT_MACROS 30 #include <cppmyth_config.h> 37 #define string_to_int64 __str2int64 38 extern int string_to_int64(
const char *str, int64_t *num);
40 #define string_to_int32 __str2int32 41 extern int string_to_int32(
const char *str, int32_t *num);
43 #define string_to_int16 __str2int16 44 extern int string_to_int16(
const char *str, int16_t *num);
46 #define string_to_int8 __str2int8 47 extern int string_to_int8(
const char *str, int8_t *num);
49 #define string_to_uint32 __str2uint32 50 extern int string_to_uint32(
const char *str, uint32_t *num);
52 #define string_to_uint16 __str2uint16 53 extern int string_to_uint16(
const char *str, uint16_t *num);
55 #define string_to_uint8 __str2uint8 56 extern int string_to_uint8(
const char *str, uint8_t *num);
58 #define int64_to_string __int64str 59 static CC_INLINE
void int64_to_string(int64_t num,
char *str)
61 sprintf(str,
"%lld", (
long long)num);
64 #define int32_to_string __int32str 65 static CC_INLINE
void int32_to_string(int32_t num,
char *str)
67 sprintf(str,
"%ld", (
long)num);
70 #define int16_to_string __int16str 71 static CC_INLINE
void int16_to_string(int16_t num,
char *str)
73 sprintf(str,
"%d", num);
76 #define int8_to_string __int8str 77 static CC_INLINE
void int8_to_string(int8_t num,
char *str)
79 sprintf(str,
"%d", num);
82 #define uint32_to_string __uint32str 83 static CC_INLINE
void uint32_to_string(uint32_t num,
char *str)
85 sprintf(str,
"%lu", (
unsigned long)num);
88 #define uint16_to_string __uint16str 89 static CC_INLINE
void uint16_to_string(uint16_t num,
char *str)
91 sprintf(str,
"%u", num);
94 #define uint8_to_string __uint8str 95 static CC_INLINE
void uint8_to_string(uint8_t num,
char *str)
97 sprintf(str,
"%u", num);
100 #define TIMESTAMP_UTC_LEN (sizeof("YYYY-MM-DDTHH:MM:SSZ") - 1) 101 #define TIMESTAMP_LEN (sizeof("YYYY-MM-DDTHH:MM:SS") - 1) 102 #define DATESTAMP_LEN (sizeof("YYYY-MM-DD") - 1) 103 #define INVALID_TIME (time_t)(0) 105 #if !HAVE_TIMEGM && !defined(timegm) 106 #define timegm __timegm 107 extern time_t timegm(
struct tm *utctime_tm);
110 #if !HAVE_LOCALTIME_R && !defined(localtime_r) 111 #define localtime_r __localtime_r 112 static CC_INLINE
struct tm *localtime_r(
const time_t *clock,
struct tm *result)
115 if (!clock || !result)
117 data = localtime(clock);
120 memcpy(result, data,
sizeof(*result));
125 #if !HAVE_GMTIME_R && !defined(gmtime_r) 126 #define gmtime_r __gmtime_r 127 static CC_INLINE
struct tm *gmtime_r(
const time_t *clock,
struct tm *result)
130 if (!clock || !result)
132 data = gmtime(clock);
135 memcpy(result, data,
sizeof(*result));
140 #define string_to_time __str2time 141 extern int string_to_time(
const char *str, time_t *time);
143 #define time_to_iso8601utc __time2iso8601utc 144 extern void time_to_iso8601utc(time_t time,
char *str);
146 #define time_to_iso8601 __time2iso8601 147 extern void time_to_iso8601(time_t time,
char *str);
149 #define time_to_isodate __time2isodate 150 extern void time_to_isodate(time_t time,
char *str);