Code

Added utils.c, utils.h to the project
[ncmpc.git] / src / utils.h
1 #ifndef UTILS_H
2 #define UTILS_H
4 /* functions for lists containing strings */
5 GList *string_list_free(GList *string_list);
6 GList *string_list_find(GList *string_list, gchar *str);
7 GList *string_list_remove(GList *string_list, gchar *str);
9 /* create a string list from path - used for completion */
10 GList *gcmp_list_from_path(mpdclient_t *c, gchar *path, GList *list);
12 #endif