Singly linked list
include/structures/sll.h View source View on GitHubMacros
Section titled “Macros”sll_add
Section titled “sll_add”#define sll_add(q, thing) \
if (!q->head) { \
q->head = thing; \
q->tail = thing; \
} else { \
thing->next = NULL; \
q->tail->next = thing; \
q->tail = thing; \
}