]> git.ipfire.org Git - thirdparty/git.git/commit - string-list.h
Add find_insert_index, insert_at_index and clear_func functions to string_list
authorMarius Storm-Olsen <marius@trolltech.com>
Sun, 8 Feb 2009 14:34:28 +0000 (15:34 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sun, 8 Feb 2009 20:36:31 +0000 (12:36 -0800)
commitcfa1ee6b340172a415049704cd848593392b9064
tree8819e69737bd86be223c50b863a59e0909294ee9
parentd551a488169aeb2ac09dba781f2ffbecf3425996
Add find_insert_index, insert_at_index and clear_func functions to string_list

string_list_find_insert_index() and string_list_insert_at_index()
enables you to see if an item is in the string_list, and to
insert at the appropriate index in the list, if not there.
This is usefull if you need to manipulate an existing item,
if present, and insert a new item if not.

Future mailmap code will use this construct to enable
complex (old_name, old_email) -> (new_name, new_email)
lookups.

The string_list_clear_func() allows to call a custom
cleanup function on each item in a string_list, which is
useful is the util member points to a complex structure.

Signed-off-by: Marius Storm-Olsen <marius@trolltech.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
string-list.c
string-list.h