Corrected a comment.

FossilOrigin-Name: 2e2ba2ba740254a01d9c5e139ec6e22e77bfe928bcc50952b7dc93553b05f427
This commit is contained in:
7u83@mail.ru 2015-10-18 06:56:28 +00:00
parent 2a383a3437
commit a8606c5b10

View File

@ -51,7 +51,7 @@ typedef time_t cw_timer_t;
/**
* Check if a timer is expired.
* @param t an time_t variable intializes by #cw_timer_start
* @param t a variable of type time_t intialized by #cw_timer_start
* @return 0=timer is not expired\n 1=timer is expired.
*/
#define cw_timer_timeout(t) (time(NULL)>t ? 1 : 0)