Lines Matching full:front
38 head->back = &head->front;
39 head->front = NULL;
56 ll_t *t = head->front;
68 return (head->front);
74 ptr = head->front;
75 if (ptr && ((head->front = ptr->n) == NULL))
76 head->back = &head->front;
83 ll_t **prev = &ptr->front;
85 t = ptr->front;
107 ll_t *ptr = head->front;
108 ll_t **prev = &head->front;