gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:SLIST_END (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/sys/queue.h - 27.6KB - 568 lines
111: #define SLIST_END(head)         NULL
112: #define SLIST_EMPTY(head)       (SLIST_FIRST(head) == SLIST_END(head))
113: #define SLIST_NEXT(elm, field)  ((elm)->field.sle_next)
116: for((var) = SLIST_FIRST(head); \ 117: (var) != SLIST_END(head); \ 118: (var) = SLIST_NEXT(var, field))
128: #define SLIST_INIT(head) { \ 129: SLIST_FIRST(head) = SLIST_END(head); \ 130: }