mirror of
https://github.com/decaf-emu/decaf-emu.git
synced 2026-07-10 18:58:15 +00:00
14 lines
153 B
C++
14 lines
153 B
C++
#pragma once
|
|
#include <ctime>
|
|
|
|
namespace platform
|
|
{
|
|
|
|
tm
|
|
localtime(const std::time_t& time);
|
|
|
|
time_t
|
|
make_gm_time(std::tm time);
|
|
|
|
} // namespace platform
|