gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 2 of 2 for fundef:LIST_FIRST (0.02 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/sys/queue.h - 27.6KB - 568 lines
183:  */
184: #define LIST_FIRST(head)                ((head)->lh_first)
185: #define LIST_END(head)                  NULL
bsd_source/t2ex/network/net/src_bsd/sys/_queue.h - 35.5KB - 704 lines
172: #define LIST_EMPTY(head)                ((head)->lh_first == NULL)
173: #define LIST_FIRST(head)                ((head)->lh_first)
174: #define LIST_NEXT(elm, field)           ((elm)->field.le_next)