liblttng-ctl: use export list to define exported symbols
[lttng-tools.git] / src / common / string-utils / string-utils.c
index 55399a1156b54d9a3b33113a73eabaec45e9bda0..1bf0cc060f9960fe46e84611bea13cab5a30b0ce 100644 (file)
@@ -23,7 +23,6 @@ enum star_glob_pattern_type_flags {
  * Normalizes the star-only globbing pattern `pattern`, that is, crushes
  * consecutive `*` characters into a single `*`, avoiding `\*`.
  */
-LTTNG_HIDDEN
 void strutils_normalize_star_glob_pattern(char *pattern)
 {
        const char *p;
@@ -106,7 +105,6 @@ end:
  * Returns true if `pattern` is a star-only globbing pattern, that is,
  * it contains at least one non-escaped `*`.
  */
-LTTNG_HIDDEN
 bool strutils_is_star_glob_pattern(const char *pattern)
 {
        return strutils_test_glob_pattern(pattern) &
@@ -117,7 +115,6 @@ bool strutils_is_star_glob_pattern(const char *pattern)
  * Returns true if `pattern` is a globbing pattern with a globbing,
  * non-escaped star only at its very end.
  */
-LTTNG_HIDDEN
 bool strutils_is_star_at_the_end_only_glob_pattern(const char *pattern)
 {
        return strutils_test_glob_pattern(pattern) &
@@ -129,7 +126,6 @@ bool strutils_is_star_at_the_end_only_glob_pattern(const char *pattern)
  * removes `\`. If `only_char` is not 0, only this character is
  * escaped.
  */
-LTTNG_HIDDEN
 char *strutils_unescape_string(const char *input, char only_char)
 {
        char *output;
@@ -174,7 +170,6 @@ end:
  * Frees a null-terminated array of strings, including each contained
  * string.
  */
-LTTNG_HIDDEN
 void strutils_free_null_terminated_array_of_strings(char **array)
 {
        char **item;
@@ -240,7 +235,6 @@ void strutils_free_null_terminated_array_of_strings(char **array)
  *
  * Returns -1 if there's an error.
  */
-LTTNG_HIDDEN
 int strutils_split(const char *input,
                char delim,
                bool escape_delim,
@@ -355,7 +349,6 @@ end:
        return ret;
 }
 
-LTTNG_HIDDEN
 size_t strutils_array_of_strings_len(char * const *array)
 {
        char * const *item;
This page took 0.023803 seconds and 4 git commands to generate.