summaryrefslogtreecommitdiff
path: root/linked_list.c
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2022-07-28 13:51:42 -0300
committermrb0nk500 <b0nk@b0nk.xyz>2022-07-28 13:51:42 -0300
commitd55488c605c425815c641f22aa46c398da20a950 (patch)
tree33a46335f579b0b25d62bf9b73698f80207f1a1b /linked_list.c
parentc2756dd4cd48ca0beddae4d6a83dd5aaac5674ed (diff)
linked_list: Add `linked_list_to_array()`
This function takes the given linked list, and creates a type generic pointer array from it.
Diffstat (limited to 'linked_list.c')
-rw-r--r--linked_list.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/linked_list.c b/linked_list.c
index 3c694be..0eeb19b 100644
--- a/linked_list.c
+++ b/linked_list.c
@@ -62,6 +62,19 @@ void cleanup_linked_list(linked_list *node) {
}
}
+void **linked_list_to_array(linked_list *node) {
+ void **arr = calloc(linked_list_size(get_tail(node))+1, sizeof(void *));
+ int i = 0;
+
+ for (linked_list *n = get_head(node); n != NULL; n = n->next, ++i) {
+ arr[i] = n->data;
+ }
+
+ arr[i] = NULL;
+
+ return arr;
+}
+
int linked_list_size(linked_list *tail) {
int i = 0;
for (linked_list *node = tail; node != NULL; node = node->prev, ++i);