1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 08:20:44 +00:00
falk-werner_webfuse-provider/lib/webfuse/core/timer/timepoint.h

32 lines
528 B
C

#ifndef WF_TIMER_TIMEPOINT_H
#define WF_TIMER_TIMEPOINT_H
#ifndef __cplusplus
#include <stdbool.h>
#include <inttypes.h>
#else
#include <cinttypes>
#endif
#ifdef __cplusplus
extern "C"
{
#endif
typedef uint64_t wf_timer_timepoint;
typedef int64_t wf_timer_timediff;
extern wf_timer_timepoint wf_timer_timepoint_now(void);
extern wf_timer_timepoint wf_timer_timepoint_in_msec(
wf_timer_timediff value);
extern bool wf_timer_timepoint_is_elapsed(
wf_timer_timepoint timepoint);
#ifdef __cplusplus
}
#endif
#endif