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
Add xterm-white.theme
[cmus.git]
/
load_dir.h
blob
4227aab442830061211d484dfcdc0915c23c4f82
1
/*
2
* Copyright Timo Hirvonen
3
*/
4
5
#ifndef _LOAD_DIR_H
6
#define _LOAD_DIR_H
7
8
#include <sys/stat.h>
9
10
int
load_dir
(
const char
*
dirname
,
char
***
names
,
11
int
(*
filter
)(
const char
*
name
,
const struct
stat
*
s
),
12
int
(*
compare
)(
const void
*
a
,
const void
*
b
));
13
14
#endif