diff options
Diffstat (limited to 'lib/event.h')
-rw-r--r-- | lib/event.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/event.h b/lib/event.h index d8500413..d5975222 100644 --- a/lib/event.h +++ b/lib/event.h @@ -30,4 +30,11 @@ void ev_schedule(event *); void ev_postpone(event *); int ev_run_list(event_list *); +static inline int +ev_active(event *e) +{ + return e->n.next != NULL; +} + + #endif |