mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-16 00:45:48 +08:00
17 lines
233 B
C
17 lines
233 B
C
|
#pragma once
|
||
|
#include<string>
|
||
|
#include<cstdio>
|
||
|
#include<ctime>
|
||
|
|
||
|
namespace c11log
|
||
|
{
|
||
|
namespace details
|
||
|
{
|
||
|
namespace os
|
||
|
{
|
||
|
std::tm localtime(const std::time_t &time_t);
|
||
|
std::tm localtime();
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|