1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/time.hpp

17 lines
220 B
C++
Raw Normal View History

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