bin: compile lttng as C++
[lttng-tools.git] / src / common / string-utils / string-utils.h
index 3c1a413cee5e51cbce03c4fa410e4d7042d6e6e7..fb795b9ddf9a5bec07e63da880da75788995e2d1 100644 (file)
 
 #include <stdbool.h>
 #include <common/macros.h>
+#include <common/dynamic-array.h>
+
+#if defined(__cplusplus)
+extern "C" {
+#endif
 
-LTTNG_HIDDEN
 void strutils_normalize_star_glob_pattern(char *pattern);
 
-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
 char *strutils_unescape_string(const char *input, char only_char);
 
-LTTNG_HIDDEN
-char **strutils_split(const char *input, char delim, bool escape_delim);
+int strutils_split(const char *input, char delim, bool escape_delim,
+               struct lttng_dynamic_pointer_array *out_strings);
 
-LTTNG_HIDDEN
 void strutils_free_null_terminated_array_of_strings(char **array);
 
-LTTNG_HIDDEN
 size_t strutils_array_of_strings_len(char * const *array);
 
+#if defined(__cplusplus)
+}
+#endif
+
 #endif /* _STRING_UTILS_H */
This page took 0.025114 seconds and 4 git commands to generate.