]> git.ipfire.org Git - thirdparty/git.git/commit
string-list: align string_list_split() with its _in_place() counterpart
authorJunio C Hamano <gitster@pobox.com>
Fri, 1 Aug 2025 22:04:18 +0000 (15:04 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sun, 3 Aug 2025 05:29:27 +0000 (22:29 -0700)
commit9f6dfe43c8a55b833ae16486bcafe29b543461f9
tree8183419676481f415c0227d43c724e4524457156
parent4f9c8d896397a1748132060d3465e8573c861633
string-list: align string_list_split() with its _in_place() counterpart

The string_list_split_in_place() function was updated by 52acddf3
(string-list: multi-delimiter `string_list_split_in_place()`,
2023-04-24) to take more than one delimiter characters, hoping that
we can later use it to replace our uses of strtok().  We however did
not make a matching change to the string_list_split() function,
which is very similar.

Before giving both functions more features in future commits, allow
string_list_split() to also take more than one delimiter characters
to make them closer to each other.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
19 files changed:
builtin/blame.c
builtin/merge.c
builtin/var.c
connect.c
diff.c
fetch-pack.c
notes.c
parse-options.c
pathspec.c
protocol.c
ref-filter.c
setup.c
string-list.c
string-list.h
t/helper/test-path-utils.c
t/helper/test-ref-store.c
t/unit-tests/u-string-list.c
transport.c
upload-pack.c