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