gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 2 of 2 for fundef:SLIST_EMPTY (0.01 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)
bsd_source/t2ex/network/net/src_bsd/sys/_queue.h - 35.5KB - 704 lines
237:  */
238: #define SLIST_EMPTY(head)       ((head)->slh_first == NULL)
239: #define SLIST_FIRST(head)       ((head)->slh_first)