17 struct node *ret = NULL;
26 for(; *
n;
n = &(*n)->next) {
29 struct node *
const ret = *
n;
static struct node * list_reverse(struct node *n)
Definition list.h:16
static void list_push_front(struct node **l, struct node *n)
Definition list.h:11
static struct node * list_remove(struct node **n, int i)
Definition list.h:25
struct node * next
Definition list.h:7