Merge branch 'master' of git://ozlabs.org/~paulus/gitk
[gitweb.git] / Documentation / technical / api-string-list.txt
index 20be3488349c2ddbafbd90c0200f2a7d3862a12f..d51a6579c85f7417708f918cf9807447b1508e3c 100644 (file)
@@ -68,6 +68,11 @@ Functions
 
 * General ones (works with sorted and unsorted lists as well)
 
+`string_list_init`::
+
+       Initialize the members of the string_list, set `strdup_strings`
+       member according to the value of the second parameter.
+
 `filter_string_list`::
 
        Apply a function to each item in a list, retaining only the
@@ -200,3 +205,5 @@ Represents the list itself.
   You should not tamper with it.
 . Setting the `strdup_strings` member to 1 will strdup() the strings
   before adding them, see above.
+. The `compare_strings_fn` member is used to specify a custom compare
+  function, otherwise `strcmp()` is used as the default function.