precompose_utf8: make precompose_string_if_needed() public
commit 5c327502 (MacOS: precompose_argv_prefix(), 2021-02-03) uses
the function precompose_string_if_needed() internally. It is only
used from precompose_argv_prefix() and therefore static in
compat/precompose_utf8.c
Expose this function, it will be used in the next commit.
While there, allow passing a NULL pointer, which will return NULL.
Signed-off-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
5c327502db
commit
5020774aef
@ -256,6 +256,11 @@ static inline const char *precompose_argv_prefix(int argc, const char **argv, co
|
||||
{
|
||||
return prefix;
|
||||
}
|
||||
static inline const char *precompose_string_if_needed(const char *in)
|
||||
{
|
||||
return in;
|
||||
}
|
||||
|
||||
#define probe_utf8_pathname_composition()
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user