Lines Matching refs:start
58 static struct string_list *concat_list(struct string_list *start, ...);
350 static struct string_list *concat_list(struct string_list *start, ...)
355 if (!start)
357 for (va_start(ap, start); (n = va_arg(ap, struct string_list *));) {
360 n2->next = start;
361 start = n;
364 return start;
378 struct string_list *copy_list_range(struct string_list *start,
383 if (start == end)
385 n = res = copy_node(start);
386 for (start = start->next; start != end; start = start->next) {
387 n->next = copy_node(start);