Files
decaf-emu/src/common/platform_time.h

14 lines
153 B
C
Raw Normal View History

2015-10-22 22:00:35 +01:00
#pragma once
#include <ctime>
namespace platform
{
tm
localtime(const std::time_t& time);
2015-10-22 22:00:35 +01:00
time_t
make_gm_time(std::tm time);
2015-10-22 22:00:35 +01:00
} // namespace platform