Since: 2.14 */
| 95 | |
| 96 | /* Since: 2.14 */ |
| 97 | static inline GList * |
| 98 | g_hash_table_get_values(GHashTable * hash_table) |
| 99 | { |
| 100 | GList *values = NULL; |
| 101 | |
| 102 | g_hash_table_foreach(hash_table, g_hash_prepend_value, &values); |
| 103 | return values; |
| 104 | } |
| 105 | |
| 106 | static inline gboolean |
| 107 | g_hash_table_nth_data(gpointer key, gpointer value, gpointer user_data) |
no outgoing calls
no test coverage detected