Clean-up: run format-cpp on the tree
[lttng-tools.git] / src / common / string-utils / string-utils.hpp
index 4be165f9c9508e38638c431f6a31d79ec97f79f3..f6c9b8f828360adc4b08437477f81c3d578f552b 100644 (file)
@@ -8,9 +8,10 @@
 #ifndef _STRING_UTILS_H
 #define _STRING_UTILS_H
 
-#include <stdbool.h>
-#include <common/macros.hpp>
 #include <common/dynamic-array.hpp>
+#include <common/macros.hpp>
+
+#include <stdbool.h>
 
 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 */
This page took 0.023446 seconds and 4 git commands to generate.