summaryrefslogtreecommitdiff
path: root/src/core/misc.h
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2016-06-05 17:24:27 +0200
committerLemonBoy <thatlemon@gmail.com>2016-06-05 17:24:27 +0200
commit0060f682c213dc25901f4c0ab01a01176e14da9e (patch)
treeb23ef3ec549ae6d0c935549a94578934fad0379f /src/core/misc.h
parent2e8744319d5e5e47799ec20b2f737c437e8c6398 (diff)
downloadirssi-0060f682c213dc25901f4c0ab01a01176e14da9e.zip
Factor out some redundant code and remove hashtable_get_keys
Diffstat (limited to 'src/core/misc.h')
-rw-r--r--src/core/misc.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/misc.h b/src/core/misc.h
index df17998f..c095e131 100644
--- a/src/core/misc.h
+++ b/src/core/misc.h
@@ -32,9 +32,7 @@ char *gslistptr_to_string(GSList *list, int offset, const char *delimiter);
/* `list' contains char* */
char *gslist_to_string(GSList *list, const char *delimiter);
-/* save all keys in hash table to linked list - you shouldn't remove any
- items while using this list, use g_slist_free() after you're done with it */
-GSList *hashtable_get_keys(GHashTable *hash);
+GList *optlist_remove_known(const char *cmd, GHashTable *optlist);
/* convert ~/ to $HOME */
char *convert_home(const char *path);