Lines Matching refs:first
28 appendConstList(ConstListPtr first, ConstListPtr second)
33 return first;
35 if (first == NULL)
38 for (current = first; current->next; current = current->next)
42 return first;
48 ConstListPtr first, current;
54 first = malloc(sizeof(ConstListRec));
55 if (!first)
58 first->value = a[0];
59 first->next = NULL;
61 current = first;
65 destroyConstList(first);
76 return first;
79 return appendConstList(old, first);