This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/base/gmtime.hpp
2018-09-18 14:46:56 +03:00

9 lines
150 B
C++

#pragma once
#include <ctime>
namespace base
{
/// A cross-platform replacenemt of gmtime_r
std::tm GmTime(time_t const time);
} // namespace base