spdlog/include/c11log/details/os.h

48 lines
899 B
C
Raw Normal View History

2014-01-25 04:09:04 -05:00
#pragma once
#include<string>
#include<cstdio>
#include<ctime>
2014-02-21 15:51:54 -05:00
namespace c11log {
namespace details {
namespace os {
2014-03-04 17:31:13 -05:00
inline std::tm localtime(const std::time_t &time_tt)
2014-02-20 14:39:58 -05:00
{
std::tm tm;
#ifdef _MSC_VER
localtime_s(&tm, &time_tt);
#else
2014-02-21 15:51:54 -05:00
localtime_r(&time_tt, &tm);
2014-02-20 14:39:58 -05:00
#endif
return tm;
}
2014-03-04 17:31:13 -05:00
inline std::tm localtime()
2014-02-20 14:39:58 -05:00
{
std::time_t now_t = time(0);
return localtime(now_t);
}
2014-03-02 09:31:13 -05:00
inline bool operator==(const std::tm& tm1, const std::tm& tm2)
{
2014-03-04 17:31:13 -05:00
return (tm1.tm_sec == tm2.tm_sec &&
tm1.tm_min == tm2.tm_min &&
tm1.tm_hour == tm2.tm_hour &&
tm1.tm_mday == tm2.tm_mday &&
tm1.tm_mon == tm2.tm_mon &&
tm1.tm_year == tm2.tm_year &&
tm1.tm_isdst == tm2.tm_isdst);
}
inline bool operator!=(const std::tm& tm1, const std::tm& tm2)
{
2014-03-04 17:31:13 -05:00
return !(tm1==tm2);
}
}
}
}