X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fstring-utils%2Fstring-utils.hpp;h=f6c9b8f828360adc4b08437477f81c3d578f552b;hb=28f23191dcbf047429d51950a337a57d7a3f866a;hp=4be165f9c9508e38638c431f6a31d79ec97f79f3;hpb=f250b40e2179eccdb83766bf4abef5a35036c47b;p=lttng-tools.git diff --git a/src/common/string-utils/string-utils.hpp b/src/common/string-utils/string-utils.hpp index 4be165f9c..f6c9b8f82 100644 --- a/src/common/string-utils/string-utils.hpp +++ b/src/common/string-utils/string-utils.hpp @@ -8,9 +8,10 @@ #ifndef _STRING_UTILS_H #define _STRING_UTILS_H -#include -#include #include +#include + +#include void strutils_normalize_star_glob_pattern(char *pattern); @@ -20,12 +21,14 @@ bool strutils_is_star_at_the_end_only_glob_pattern(const char *pattern); char *strutils_unescape_string(const char *input, char only_char); -int strutils_split(const char *input, char delim, bool escape_delim, - struct lttng_dynamic_pointer_array *out_strings); +int strutils_split(const char *input, + char delim, + bool escape_delim, + struct lttng_dynamic_pointer_array *out_strings); void strutils_free_null_terminated_array_of_strings(char **array); -size_t strutils_array_of_strings_len(char * const *array); +size_t strutils_array_of_strings_len(char *const *array); /* * Append `append` to the malloc-end string `str`. @@ -41,7 +44,6 @@ C_LINKAGE int strutils_append_str(char **str, const char *append); * Like `strutils_append_str`, but the appended string is formatted using * `fmt` and the following arguments. */ -C_LINKAGE ATTR_FORMAT_PRINTF(2, 3) -int strutils_appendf(char **s, const char *fmt, ...); +C_LINKAGE ATTR_FORMAT_PRINTF(2, 3) int strutils_appendf(char **s, const char *fmt, ...); #endif /* _STRING_UTILS_H */