From 5020774aef3fc80c89fac2e04d4ed0aeac66cdf0 Mon Sep 17 00:00:00 2001 From: Torsten Bögershausen Date: Sun, 4 Apr 2021 08:17:45 +0200 Subject: precompose_utf8: make precompose_string_if_needed() public MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Junio C Hamano --- compat/precompose_utf8.h | 1 + 1 file changed, 1 insertion(+) (limited to 'compat/precompose_utf8.h') diff --git a/compat/precompose_utf8.h b/compat/precompose_utf8.h index d70b84665c..fea06cf28a 100644 --- a/compat/precompose_utf8.h +++ b/compat/precompose_utf8.h @@ -29,6 +29,7 @@ typedef struct { } PREC_DIR; const char *precompose_argv_prefix(int argc, const char **argv, const char *prefix); +const char *precompose_string_if_needed(const char *in); void probe_utf8_pathname_composition(void); PREC_DIR *precompose_utf8_opendir(const char *dirname); -- cgit v1.2.3