You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
326 B
C
22 lines
326 B
C
#pragma once
|
|
#include <ctime>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// The UTC version of mktime
|
|
/* timegm is replaced with _mkgmtime on Windows (msvc && mingw) */
|
|
#if defined(_MSC_VER)
|
|
#define timegm _mkgmtime
|
|
#endif
|
|
|
|
#if defined(__MINGW__)
|
|
time_t timegm(struct tm * const tmp);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|