Fix a bug in change_sf()
[cmus.git] / glob.h
blob3e42fc57978aa8c108abe4c06f443401eb8fec30
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