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
2019-03-24 03:25:29 +01:00

32 lines
475 B
C

#ifndef WSFS_ADAPTER_IMPL_TIME_TIMEPOINT_H
#define WSFS_ADAPTER_IMPL_TIME_TIMEPOINT_H
#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;
extern timepoint timepoint_now(void);
extern timepoint timepoint_in_msec(
timediff value);
extern bool timepoint_is_elapsed(
timepoint timepoint);
#ifdef __cplusplus
}
#endif
#endif