a5480108f8
dirvec_find() does not modify the object, thus it should get a const pointer.
22 lines
412 B
C
22 lines
412 B
C
#ifndef DIRVEC_H
|
|
#define DIRVEC_H
|
|
|
|
#include <stddef.h>
|
|
|
|
struct dirvec {
|
|
struct directory **base;
|
|
size_t nr;
|
|
};
|
|
|
|
void dirvec_sort(struct dirvec *dv);
|
|
|
|
struct directory *dirvec_find(const 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 */
|