11 lines
193 B
C
11 lines
193 B
C
#ifndef TWN_TIMER_H
|
|
#define TWN_TIMER_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
bool start_sanity_timer(uint32_t milliseconds_to_expire);
|
|
void end_sanity_timer(void);
|
|
|
|
#endif // TWN_TIMER_H
|