I'm trying to sort a GLib hash table by id that looks something like:
key - id
{
"Red", 2,
"BLue", 4,
"Yellow", 5,
"Orange", 8
}
I'm just not sure how to approach this because GLib does not have a sort method. I was thinking to use qsort or GCompareFunc
Any ideas will be appreciate it!