-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkedlist.c
144 lines (125 loc) · 2 KB
/
linkedlist.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#include "main.h"
/**
* insert_end - Insert node at end of list
* @head: list root
* @key: key of list
* @value: Value to add
*
* Return: Pointer to head of list
*/
envstruct *insert_end(envstruct *head, char *key, char *value)
{
envstruct *curr = head;
envstruct *new_node = malloc(sizeof(envstruct));
if (new_node == NULL)
{
return (NULL);
}
new_node->key = strdup(key);
new_node->value = strdup(value);
new_node->next = NULL;
if (head == NULL)
{
return (new_node);
}
while (curr->next != NULL)
{
curr = curr->next;
}
curr->next = new_node;
return (head);
}
/**
* get_value - gets value of env var
* @head: head variable
* @key: value variable
*
* Return: NULL
*/
char *get_value(envstruct *head, char *key)
{
envstruct *curr = head;
if (head == NULL || key == NULL)
{
return (NULL);
}
while (curr != NULL)
{
if (strcmp(curr->key, key) == 0)
{
return (curr->value);
}
curr = curr->next;
}
return (NULL);
}
/**
* print_all - Get all members of list
* @head: list root
*
* Return: 0
*/
int print_all(envstruct *head)
{
envstruct *curr = head;
while (curr != NULL)
{
printf("%s=%s\n", curr->key, curr->value);
curr = curr->next;
}
return (0);
}
/**
* remove_value - remove env variable
* @head: head variable
* @key: key variable
*
* Return: 0 or 1
*/
int remove_value(envstruct **head, char *key)
{
envstruct *curr = *head;
envstruct *prev = NULL;
if (head == NULL || *head == NULL)
{
return (1);
}
while (curr != NULL)
{
if (strcmp(curr->key, key) == 0)
{
if (prev == NULL)
{
*head = curr->next;
}
else
{
prev->next = curr->next;
}
free(curr->key);
free(curr->value);
free(curr);
return (0);
}
prev = curr;
curr = curr->next;
}
return (1);
}
/**
* free_list - frees the list_mem
* @head: head variable
*
* Return: void
*/
void free_list(envstruct *head)
{
while (head != NULL)
{
envstruct *temp = head;
head = head->next;
free(temp->key);
free(temp->value);
free(temp);
}
}