mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-07 15:20:31 +00:00
15 lines
205 B
C
15 lines
205 B
C
#ifndef LLARP_TIME_H
|
|
#define LLARP_TIME_H
|
|
#include <stdint.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
uint64_t llarp_time_now_ms();
|
|
uint64_t llarp_time_now_sec();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|