Lines Matching refs:next
203 struct Node* next;
213 head = head->next;
300 (*head)->next = *end;
302 (*end)->next = NULL;
318 new_node->next = NULL;
319 (*end)->next = new_node;
439 while ((*head)->next != NULL) {
440 curr = (*head)->next;
449 (*head)->next = curr->next;
552 head->next = end;
554 end->next = NULL;
556 while (head->next != NULL) {
557 curr = head->next;
599 new_node->next = NULL;
600 end->next = new_node;
618 head->next = curr->next;