-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3-add_node_end.c
41 lines (33 loc) · 890 Bytes
/
3-add_node_end.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <stdlib.h>
#include <string.h>
#include "lists.h"
/**
* * add_node_end - adds a new node at the end of a linked list
* * @head: double pointer to the list_t list
* * @str: string to put in the new node
* *
* * Return: address of the new element, or NULL if it failed
* */
list_t *add_node_end(list_t **head, const char *str)
{
list_t *new;
list_t *temp = *head;
unsigned int len = 0;
while (str[len])
len++;
new = malloc(sizeof(list_t));
if (!new)
return (NULL);
new->str = strdup(str);
new->len = len;
new->next = NULL;
if (*head == NULL)
{
*head = new;
return (new);
}
while (temp->next)
temp = temp->next;
temp->next = new;
return (new);
}