http://library.gnome.org/devel/glib/stable/glib-Hash-Tables.html#g-str-equal
g_str_equal ()
gboolean g_str_equal (gconstpointer v1,
gconstpointer v2);
Compares two strings for byte-by-byte equality and returns TRUE
if they are equal. It can be passed to g_hash_table_new()
as the key_equal_func
parameter, when using strings as keys in a GHashTable.
v1 : | a key |
v2 : | a key to compare with v1 |
Returns : | TRUE if the two keys match |