1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/lib/wsfs/adapter/impl/time/timepoint.h

32 lines
475 B
C
Raw Normal View History

#ifndef WSFS_ADAPTER_IMPL_TIME_TIMEPOINT_H
#define WSFS_ADAPTER_IMPL_TIME_TIMEPOINT_H
2019-02-09 18:02:53 +00:00
#ifndef __cplusplus
#include <stdbool.h>
#include <inttypes.h>
#else
#include <cinttypes>
#endif
#ifdef __cplusplus
extern "C"
{
#endif
typedef uint64_t timepoint;
typedef int64_t timediff;
2019-03-24 01:10:03 +00:00
extern timepoint timepoint_now(void);
2019-02-09 18:02:53 +00:00
extern timepoint timepoint_in_msec(
timediff value);
2019-02-09 18:02:53 +00:00
extern bool timepoint_is_elapsed(
timepoint timepoint);
2019-02-09 18:02:53 +00:00
#ifdef __cplusplus
}
#endif
#endif