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();
 | 
						|
			
 | 
						|
		}		
 | 
						|
	}
 | 
						|
} |