blob: 31719fcc853c32514b3658e8846b5e4c7d2f06ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef DIRVEC_H
#define DIRVEC_H
struct dirvec;
void dirvec_sort(struct dirvec *dv);
struct directory *dirvec_find(struct dirvec *dv, const char *path);
int dirvec_delete(struct dirvec *dv, struct directory *del);
void dirvec_add(struct dirvec *dv, struct directory *add);
void dirvec_destroy(struct dirvec *dv);
#endif /* DIRVEC_H */
|