gvdb_table_list
gchar** gvdb_table_list (GvdbTable* table,
const gchar* key);
List all of the keys that appear below key. The nesting of keys within the hash file is defined by the program that created the hash file. One thing is constant: each item in the returned array can be concatenated to key to obtain the full name of that key.
It is not possible to tell from this function if a given key is itself a path, a value, or another hash table; you are expected to know this for yourself.
You should call g_strfreev() on the return result when you no longer require it.
- table
- key
a string
- Returns
a NULL-terminated string array