SLIST_EMPTY
#define SLIST_EMPTY(head) (SLIST_FIRST(head) == SLIST_END(head))
#undef SLIST_EMPTY
#define SLIST_EMPTY(head) ((head)->slh_first == NULL)