Debugging colored, cool

FossilOrigin-Name: b62ab94004ae914a6c042383ef399141a1a82e49408b6ae3b1422ba3c72733b1
This commit is contained in:
7u83@mail.ru
2018-03-19 16:26:01 +00:00
parent 7832ca1336
commit 34646183a1
28 changed files with 194 additions and 282 deletions

View File

@ -42,7 +42,7 @@ typedef time_t cw_timer_t;
* @code
* cw_timer_t timer = cw_timer_start(60);
* while (!cw_timer_timeout(timer)){
* // Do something for max. 60 seconds ...
* @startcomment Do something for max. 60 seconds ... @endcomment
* }
* @endcode
*/
@ -78,7 +78,7 @@ typedef time_t cw_timer_t;
* @code
* CW_CLOCK_DEFINE(clk);
* cw_clock_start(clk);
* // do something ...
* @startcomment do something ... @endcomment
* int t = cw_clock_lap(clk);
* printf("Caclulation took %d seconds\n",t);
* @endcode