sll_find
extern void *sll_find(long nextoff, void *head, sll_compare_func func, void *id);
#define SLL_FIND(_head,_nextp,_func,_with) (typeof(_head))sll_find(offsetof(typeof(*_head),_nextp), (void *)(_head), _func, _with)