From: Soikk Date: Sun, 30 Jan 2022 01:58:14 +0000 (+0100) Subject: Idk how to undo commit X-Git-Url: https://git.xolatile.top/?a=commitdiff_plain;h=97e61a2cbd3ef78ceebb98555cce4f55fbd44bfd;p=soikk-llist.h.git Idk how to undo commit --- diff --git a/llist.h b/llist.h index cdef2cd..b37e72b 100644 --- a/llist.h +++ b/llist.h @@ -26,7 +26,7 @@ llist Llist(char *name, node *head){ return nllist; } -void append(llist *l, node *n){ +void append(llist l, node *n){ if(l->head != NULL){ node *temp = l->head; while(temp->next != NULL)