Home | History | Annotate | Download | only in dist

Lines Matching refs:old

46 makeConstList(const char **a, int n, ConstListPtr old, int begin)
52 return old;
75 current->next = old;
79 return appendConstList(old, first);
84 destroyConstList(ConstListPtr old)
86 if (!old)
88 while (old) {
89 ConstListPtr next = old->next;
90 free(old);
91 old = next;