STAILQ_EMPTY
#define STAILQ_EMPTY(head) ((head)->stqh_first == NULL)
#define STAILQ_EMPTY(head) (STAILQ_FIRST(head) == STAILQ_END(head))