/*
- * Copyright (C) 2015-2019 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2020 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
return g_strjoinv (replace, g_strsplit (string, origin, 0));
}
+/**
+ * zak_utils_gstring_replace:
+ * @string:
+ * @origin:
+ * @replace:
+ *
+ */
+void
+zak_utils_gstring_replace (GString *string,
+ const gchar *origin,
+ const gchar *replace)
+{
+ gchar *str;
+
+ str = zak_utils_string_replace ((const gchar *)string->str, origin, replace);
+
+ g_string_assign (string, str);
+
+ g_free (str);
+}
+
/**
* zak_utils_gstring_replace_full:
* @string: