Home | History | Annotate | Download | only in src

Lines Matching refs:tail

769     metalink_resource root, *tail;
771 tail = &root;
790 tail->next = res;
791 tail = res;
794 tail = root.next;
797 while(tail) {
798 res = tail->next;
799 free(tail->url);
800 free(tail);
801 tail = res;