diff options
| author | Lars-Dominik Braun <lars@6xq.net> | 2014-02-24 15:32:57 +0100 | 
|---|---|---|
| committer | Lars-Dominik Braun <lars@6xq.net> | 2014-02-24 15:32:57 +0100 | 
| commit | b89a708807c72c67b128aa3d684afdbd694f66bc (patch) | |
| tree | 9aa15abee88bd19f898217725974824606b495bf /timer.h | |
| parent | e9c1df9237c210ebe1fa6d7578bc7b61e2ab33f0 (diff) | |
| download | hourglass-b89a708807c72c67b128aa3d684afdbd694f66bc.tar.gz hourglass-b89a708807c72c67b128aa3d684afdbd694f66bc.tar.bz2 hourglass-b89a708807c72c67b128aa3d684afdbd694f66bc.zip | |
Add simple timer that counts one second
Diffstat (limited to 'timer.h')
| -rw-r--r-- | timer.h | 11 | 
1 files changed, 11 insertions, 0 deletions
| @@ -0,0 +1,11 @@ +#ifndef TIMER_H +#define TIMER_H + +#include <stdbool.h> + +void timerStart (); +bool timerHit (); +void timerStop (); + +#endif /* TIMER_H */ + | 
