Home | History | Annotate | Download | only in c-ares

Lines Matching refs:head

23  * dummy head.
26 /* Initialize a new head node */
27 void ares__init_list_head(struct list_node* head) {
28 head->prev = head;
29 head->next = head;
30 head->data = NULL;
41 int ares__is_list_empty(struct list_node* head) {
42 return ((head->next == head) && (head->prev == head));