Hi, On Thu, 19 Mar 2009, Jeff King wrote: > @@ -163,9 +163,15 @@ static int cmp_items(const void *a, const void *b) > return strcmp(one->string, two->string); > } > > +void sort_string_list_with_fn(struct string_list *list, > + int (*fn)(const void *, const void *)) > +{ > + qsort(list->items, list->nr, sizeof(*list->items), fn); > +} > + Do we really want an API for that? Calling qsort() directly should be obvious enough, no? Ciao, Dscho -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html