merge(3p/git): Merge git subtree at v2.29.2
This also bumps the stable nixpkgs to 20.09 as of 2020-11-21, because there is some breakage in the git build related to the netrc credentials helper which someone has taken care of in nixpkgs. The stable channel is not used for anything other than git, so this should be fine. Change-Id: I3575a19dab09e1e9556cf8231d717de9890484fb
This commit is contained in:
parent
082c006c04
commit
f4609b896f
1485 changed files with 241535 additions and 109418 deletions
8
third_party/git/string-list.h
vendored
8
third_party/git/string-list.h
vendored
|
|
@ -4,7 +4,8 @@
|
|||
/**
|
||||
* The string_list API offers a data structure and functions to handle
|
||||
* sorted and unsorted arrays of strings. A "sorted" list is one whose
|
||||
* entries are sorted by string value in `strcmp()` order.
|
||||
* entries are sorted by string value in the order specified by the `cmp`
|
||||
* member (`strcmp()` by default).
|
||||
*
|
||||
* The caller:
|
||||
*
|
||||
|
|
@ -179,7 +180,7 @@ void string_list_remove(struct string_list *list, const char *string,
|
|||
|
||||
/**
|
||||
* Check if the given string is part of a sorted list. If it is part of the list,
|
||||
* return the coresponding string_list_item, NULL otherwise.
|
||||
* return the corresponding string_list_item, NULL otherwise.
|
||||
*/
|
||||
struct string_list_item *string_list_lookup(struct string_list *list, const char *string);
|
||||
|
||||
|
|
@ -209,7 +210,8 @@ struct string_list_item *string_list_append(struct string_list *list, const char
|
|||
struct string_list_item *string_list_append_nodup(struct string_list *list, char *string);
|
||||
|
||||
/**
|
||||
* Sort the list's entries by string value in `strcmp()` order.
|
||||
* Sort the list's entries by string value in order specified by list->cmp
|
||||
* (strcmp() if list->cmp is NULL).
|
||||
*/
|
||||
void string_list_sort(struct string_list *list);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue