From: Michael Jeanson Date: Tue, 9 Mar 2021 19:53:26 +0000 (-0500) Subject: Hide strutils private symbols X-Git-Tag: v2.13.0-rc1~326 X-Git-Url: https://git.lttng.org/?a=commitdiff_plain;h=29c758e418859d529bbaf10cea2b04b38bba3300;p=lttng-ust.git Hide strutils private symbols The major SONAME bump to '1' gives us the opportunity to hide private symbols that should never have been visible. Change-Id: I5be6ac61b27b31c0a1901b14aa0e864f331e4346 Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- diff --git a/liblttng-ust/string-utils.h b/liblttng-ust/string-utils.h index 2d7810cb..84c48f00 100644 --- a/liblttng-ust/string-utils.h +++ b/liblttng-ust/string-utils.h @@ -10,8 +10,13 @@ #include #include +#include "ust-helper.h" + +LTTNG_HIDDEN bool strutils_is_star_glob_pattern(const char *pattern); +LTTNG_HIDDEN bool strutils_is_star_at_the_end_only_glob_pattern(const char *pattern); +LTTNG_HIDDEN bool strutils_star_glob_match(const char *pattern, size_t pattern_len, const char *candidate, size_t candidate_len);