]> saetta.ns0.it Git - libzakutils/commitdiff
Added function ::gstring_replace.
authorAndrea Zagli <azagli@libero.it>
Sat, 2 Jun 2018 09:27:55 +0000 (11:27 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 2 Jun 2018 09:27:55 +0000 (11:27 +0200)
src/generic.c
src/generic.h

index 99e3d0ab25635bf72c5efc444f0abe80b8fc2421..f3e0fd505d9581cff555007e7d82aa71a48a7ad6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015-2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2018 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
@@ -80,6 +80,27 @@ gchar
        return ret;
 }
 
+/**
+ * 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_round:
  * @value:
index 34f7b2e35a52e9ce90000a0f2048a3c2d4be71e9..243346b95aacd646e31c2f8c97ca5e453f789d31 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015-2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2018 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
@@ -33,6 +33,9 @@ gboolean zak_utils_file_exists (const gchar *filename);
 gchar *zak_utils_string_replace (const gchar *string,
                                  const gchar *origin,
                                  const gchar *replace);
+void zak_utils_gstring_replace (GString *string,
+                                const gchar *origin,
+                                const gchar *replace);
 
 gdouble zak_utils_round (gdouble value, guint n_decimals);