Search | Google it | Results 1 - 1 of 1 for funcall:SLIST_END (0.00 seconds) |
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: }