aboutsummaryrefslogtreecommitdiff
path: root/timer.h
blob: c1b3511ec966a8d422b38ac6394aee9ece1aab08 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef TIMER_H
#define TIMER_H

#include <stdbool.h>

void timerStart ();
bool timerHit ();
void timerStop ();

#endif /* TIMER_H */