1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/util/types.hpp
2019-01-13 16:32:51 +00:00

10 lines
245 B
C++

#ifndef LLARP_TYPES_H
#define LLARP_TYPES_H
#include <cstdint>
using byte_t = uint8_t;
using llarp_proto_version_t = std::uint8_t;
using llarp_time_t = std::uint64_t;
using llarp_seconds_t = std::uint64_t;
#endif