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.
spdlog/src/os.cpp

28 lines
398 B
C++

12 years ago
#include "stdafx.h"
#include "c11log/details/os.h"
namespace c11log {
namespace details {
namespace os {
std::tm localtime(const std::time_t &time_t)
{
12 years ago
12 years ago
std::tm tm;
12 years ago
#ifdef _MSC_VER
12 years ago
localtime_s(&tm, &time_t);
12 years ago
#else
localtime_r(&time_t, &tm);
12 years ago
#endif
12 years ago
return tm;
12 years ago
}
std::tm localtime()
{
std::time_t now_t = time(0);
return localtime(now_t);
}
}
}
12 years ago
}