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);
+ }
+}
/*
- * 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
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);
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