Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gmtime.hpp « base - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9552836b8a613d1ea284f74b21c015b79e5db3f (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include <ctime>

namespace my
{
/// A cross-platform replacenemt of gmtime_r
std::tm GmTime(time_t const time);
}  // namespace my