From: Andrea Zagli Date: Sat, 29 Apr 2017 14:43:14 +0000 (+0200) Subject: Added function ::ghashtable_copy. X-Git-Tag: v0.0.2~1^2~1 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=f68cf38afde259f79febb9fce40dfd8227fb8769;p=libzakutils Added function ::ghashtable_copy. --- diff --git a/src/generic.c b/src/generic.c index 95b5637..99e3d0a 100644 --- a/src/generic.c +++ b/src/generic.c @@ -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); + } +} diff --git a/src/generic.h b/src/generic.h index c160dce..34f7b2e 100644 --- a/src/generic.h +++ b/src/generic.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2015-2016 Andrea Zagli + * Copyright (C) 2015-2017 Andrea Zagli * * 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