aboutsummaryrefslogtreecommitdiffstats
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorTorsten Bögershausen <tboegi@web.de>2021-04-04 08:17:45 +0200
committerJunio C Hamano <gitster@pobox.com>2021-04-05 17:30:04 -0700
commit5020774aef3fc80c89fac2e04d4ed0aeac66cdf0 (patch)
tree336ed5ed60f186a2bf918bc810f445c92cae3c2d /git-compat-util.h
parent5c327502dbf7a27c8784c20037851206a87857c1 (diff)
downloadgit-5020774aef3fc80c89fac2e04d4ed0aeac66cdf0.tar.gz
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>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index 93d9b4b7af..3616d12d47 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -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