spdlog/include/c11log/details/os.h

18 lines
236 B
C
Raw Normal View History

2014-01-25 04:09:04 -05:00
#pragma once
#include<string>
#include<cstdio>
#include<ctime>
namespace c11log
{
namespace details
{
namespace os
{
std::tm localtime(const std::time_t &time_t);
2014-01-28 21:00:05 -05:00
std::tm localtime();
2014-01-25 04:09:04 -05:00
}
}
2014-01-28 21:00:05 -05:00
}