Handle streams separately in tree_add_track()
[cmus.git] / glob.h
blob66b5f6cf7c746faec86f92a5a18f49fef5509254
1 /*
2 * Copyright 2005 Timo Hirvonen
3 */
5 #ifndef GLOB_H
6 #define GLOB_H
8 #include "list.h"
10 void glob_compile(struct list_head *head, const char *pattern);
11 void glob_free(struct list_head *head);
12 int glob_match(struct list_head *head, const char *text);
14 #endif