]> saetta.ns0.it Git - libzakutils/commitdiff
Added function ::ghashtable_copy.
authorAndrea Zagli <azagli@libero.it>
Sat, 29 Apr 2017 14:43:14 +0000 (16:43 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 29 Apr 2017 14:43:14 +0000 (16:43 +0200)
src/generic.c
src/generic.h

index 95b56371d1beed1b9031849a23c8fdc1b2a524c8..99e3d0ab25635bf72c5efc444f0abe80b8fc2421 100644 (file)
@@ -858,3 +858,25 @@ gchar
 
        return ret;
 }
+
+/**
+ * zak_utils_ghashtable_copy:
+ * @ht_source:
+ * @ht_dest:
+ *
+ * Copies the source #GHashTable into the destination, as is.
+ */
+void
+zak_utils_ghashtable_copy (GHashTable *ht_source, GHashTable *ht_dest)
+{
+       GHashTableIter iter;
+
+       gpointer key;
+       gpointer value;
+
+       g_hash_table_iter_init (&iter, ht_source);
+       while (g_hash_table_iter_next (&iter, &key, &value))
+               {
+                       g_hash_table_replace (ht_dest, key, value);
+               }
+}
index c160dce3dd2909bb1a1a244808b89778937cbf57..34f7b2e35a52e9ce90000a0f2048a3c2d4be71e9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015-2016 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2017 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
@@ -31,8 +31,8 @@ G_BEGIN_DECLS
 gboolean zak_utils_file_exists (const gchar *filename);
 
 gchar *zak_utils_string_replace (const gchar *string,
-                                                                const gchar *origin,
-                                                                const gchar *replace);
+                                 const gchar *origin,
+                                 const gchar *replace);
 
 gdouble zak_utils_round (gdouble value, guint n_decimals);
 
@@ -65,6 +65,8 @@ gchar *zak_utils_ghashtable_get_float_format (GHashTable *ht, gconstpointer key,
 GDateTime *zak_utils_ghashtable_get_gdatetime (GHashTable *ht, gconstpointer key);
 gchar *zak_utils_ghashtable_get_gdatetime_format (GHashTable *ht, gconstpointer key, const gchar *format);
 
+void zak_utils_ghashtable_copy (GHashTable *ht_source, GHashTable *ht_dest);
+
 
 G_END_DECLS