diff --git a/include/llist.h b/include/llist.h index 3422fff..56454b8 100644 --- a/include/llist.h +++ b/include/llist.h @@ -25,9 +25,9 @@ typedef struct _why2_node struct _why2_node *next; } why2_node_t; //SINGLE LINKED LIST -void why2_push(why2_node_t *llist_head, void *value); //PUSH ELEMENT TO LIST BACK -void why2_remove(why2_node_t *llist_head, why2_node_t *node); //REMOVE ELEMENT -void why2_remove_back(why2_node_t *llist_head); //REMOVE LAST ELEMENT -why2_node_t *why2_find(why2_node_t *llist_head, void *value); //FIND ELEMENT IN LIST +void why2_list_push(why2_node_t *llist_head, void *value); //PUSH ELEMENT TO LIST BACK +void why2_list_remove(why2_node_t *llist_head, why2_node_t *node); //REMOVE ELEMENT +void why2_list_remove_back(why2_node_t *llist_head); //REMOVE LAST ELEMENT +why2_node_t *why2_list_find(why2_node_t *llist_head, void *value); //FIND ELEMENT IN LIST #endif \ No newline at end of file diff --git a/src/core/lib/utils/llist.c b/src/core/lib/utils/llist.c index 88c35f1..023c95a 100644 --- a/src/core/lib/utils/llist.c +++ b/src/core/lib/utils/llist.c @@ -22,7 +22,7 @@ along with this program. If not, see . #include #include -void why2_push(why2_node_t *llist_head, void *value) +void why2_list_push(why2_node_t *llist_head, void *value) { //CREATE NODE why2_node_t *new_node = malloc(sizeof(why2_node_t)); @@ -43,7 +43,7 @@ void why2_push(why2_node_t *llist_head, void *value) } } -void why2_remove(why2_node_t *llist_head, why2_node_t *node) +void why2_list_remove(why2_node_t *llist_head, why2_node_t *node) { if (node == NULL) return; //NULL NODE @@ -78,7 +78,7 @@ void why2_remove(why2_node_t *llist_head, why2_node_t *node) free(node); } -void why2_remove_back(why2_node_t *llist_head) +void why2_list_remove_back(why2_node_t *llist_head) { if (llist_head == NULL) return; //EMPTY LIST @@ -102,7 +102,7 @@ void why2_remove_back(why2_node_t *llist_head) free(deallocating_node); } -why2_node_t *why2_find(why2_node_t *llist_head, void *value) +why2_node_t *why2_list_find(why2_node_t *llist_head, void *value) { if (llist_head == NULL) return NULL; //EMPTY LIST