1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 22:10:45 +00:00
falk-werner_webfuse-provider/lib/wsfs/time/timer_intern.h

26 lines
355 B
C
Raw Normal View History

#ifndef WSFS_TIME_TIMER_INTERN_H
#define WSFS_TIME_TIMER_INTERN_H
2019-02-09 18:02:53 +00:00
#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