1
struct LL { int v; struct LL* next; }; void ll_insert(struct LL** head, int v){ struct LL* n=0; n->v=v; n->next=*head; *head=n; }