diff options
Diffstat (limited to 'src/core/list.h')
| -rw-r--r-- | src/core/list.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/list.h b/src/core/list.h index dd26377e..9f21e4d6 100644 --- a/src/core/list.h +++ b/src/core/list.h @@ -41,6 +41,7 @@ extern void nni_list_insert_after(nni_list *, void *, void *); extern void *nni_list_next(const nni_list *, void *); extern void *nni_list_prev(const nni_list *, void *); extern void nni_list_remove(nni_list *, void *); +extern int nni_list_active(nni_list *, void *); #define NNI_LIST_FOREACH(l, it) \ for (it = nni_list_first(l); it != NULL; it = nni_list_next(l, it)) |
