We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b918d6 commit 0484d09Copy full SHA for 0484d09
README.md
@@ -97,18 +97,18 @@ void start(uint32_t time_ms);
97
bool periodic(uint32_t time_ms);
98
99
// pause and resume the timer
100
-void pause(void);
101
-void resume(void);
+void pause();
+void resume();
102
103
// runs out the timer so `time_over()` returns true
104
-void expire(void);
+void expire();
105
106
// returns whether the time ran out
107
-bool time_over(void);
+bool time_over();
108
109
// returns whether the timer is paused
110
-bool is_paused(void);
+bool is_paused();
111
112
// returns the milliseconds until the timer runs out
113
-uint32_t time_left_ms(void);
+uint32_t time_left_ms();
114
```
0 commit comments