4 lines
125 B
C
4 lines
125 B
C
void insert_append (struct link *anchor, struct link *newlink) {
|
|
newlink->next = anchor->next;
|
|
anchor->next = newlink;
|
|
}
|