1 #ifndef _CLOCK_MESSAGE_
2 #define _CLOCK_MESSAGE_
5 #include "lib/picture.h"
8 int ticks_at_last_unpause
;/* to count the time from last pause to now */
9 int ticks_since_started
;/* accumulated time */
13 void counter_init(struct counter
* counter
);
14 void counter_toggle(struct counter
* counter
);
15 #define counter_reset(counter) counter_init(counter)
16 void counter_pause(struct counter
* counter
, bool paused
);
17 void counter_get_elapsed_time(struct counter
* counter
, struct time
* elapsed_time
);
19 #endif /* _CLOCK_MESSAGE_ */