1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 20:30:45 +00:00
falk-werner_webfuse-provider/lib/wsfs/time/timer_intern.h
2019-02-22 16:59:08 +01:00

26 lines
355 B
C

#ifndef WSFS_TIME_TIMER_INTERN_H
#define WSFS_TIME_TIMER_INTERN_H
#ifndef __cplusplus
#include <stdbool.h>
#endif
#include "wsfs/time/timer.h"
#ifdef __cplusplus
extern "C"
{
#endif
extern bool wsfs_timer_is_timeout(
struct wsfs_timer * timer);
extern void wsfs_timer_trigger(
struct wsfs_timer * timer);
#ifdef __cplusplus
}
#endif
#endif