Lines Matching refs:old
191 makeList(char **a, int n, ListPtr old, int begin)
197 return old;
220 current->next = old;
224 return appendList(old, first);
229 reverseList(ListPtr old)
233 while (old) {
234 current = old;
235 old = old->next;
253 sortList(ListPtr old)
256 int l = listLength(old);
261 return old;
266 return old;
268 for (n = old, i = 0; n != NULL; n = n->next) {
282 destroyList(ListPtr old)
286 if (!old)
288 while (old) {
289 next = old->next;
290 free(old);
291 old = next;
296 deepDestroyList(ListPtr old)
300 if (!old)
302 while (old) {
303 next = old->next;
304 free(old->value);
305 free(old);
306 old = next;