repo.or.cz
/
cmus.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Document Replay Gain
[cmus.git]
/
glob.h
blob
66b5f6cf7c746faec86f92a5a18f49fef5509254
1
/*
2
* Copyright 2005 Timo Hirvonen
3
*/
4
5
#ifndef GLOB_H
6
#define GLOB_H
7
8
#include
"list.h"
9
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
);
13
14
#endif