2025-01-25 23:37:21 +00:00
|
|
|
#ifndef TWN_TIMER_H
|
|
|
|
#define TWN_TIMER_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2025-01-30 02:10:38 +00:00
|
|
|
#include <stdint.h>
|
2025-01-25 23:37:21 +00:00
|
|
|
|
2025-01-30 01:30:20 +00:00
|
|
|
bool start_sanity_timer(uint32_t milliseconds_to_expire);
|
2025-01-31 02:11:10 +00:00
|
|
|
void end_sanity_timer(void);
|
2025-01-25 23:37:21 +00:00
|
|
|
|
|
|
|
#endif // TWN_TIMER_H
|