Re: [PATCH v2 01/10] string-list: allow case-insensitive string list

2013-01-10 Thread René Scharfe
Am 08.01.2013 01:10, schrieb Junio C Hamano: > Some string list needs to be searched case insensitively, and for > that to work correctly, the string needs to be sorted case > insensitively from the beginning. > > Allow a custom comparison function to be defined on a string list > instance and use

[PATCH v2 01/10] string-list: allow case-insensitive string list

2013-01-07 Thread Junio C Hamano
Some string list needs to be searched case insensitively, and for that to work correctly, the string needs to be sorted case insensitively from the beginning. Allow a custom comparison function to be defined on a string list instance and use it throughout in place of strcmp(). Signed-off-by: Juni