lokinet/llarp/util/time.hpp

17 lines
219 B
C++
Raw Normal View History

2018-10-08 11:56:40 +00:00
#ifndef LLARP_TIME_HPP
#define LLARP_TIME_HPP
#include <util/types.hpp>
2018-11-19 22:45:37 +00:00
2018-10-08 11:56:40 +00:00
#include <chrono>
namespace llarp
{
2018-11-19 22:45:37 +00:00
using Clock_t = std::chrono::system_clock;
llarp_time_t
time_now_ms();
} // namespace llarp
2018-10-08 11:56:40 +00:00
#endif