diff options
author | Max Kellermann <max@duempel.org> | 2012-01-21 11:31:58 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-01-21 11:32:06 +0100 |
commit | 2a6acc04a12e8e0b75108f682b0cf7f5d0546830 (patch) | |
tree | 3124902cc416eec33e3fd8310a0bc97221aed0b5 /src/dirvec.h | |
parent | a46712809363d7cb5337d3aca67e2d06c515ad85 (diff) | |
download | mpd-2a6acc04a12e8e0b75108f682b0cf7f5d0546830.tar.gz mpd-2a6acc04a12e8e0b75108f682b0cf7f5d0546830.tar.xz mpd-2a6acc04a12e8e0b75108f682b0cf7f5d0546830.zip |
dirvec: remove unused functions _clear(), _for_each()
Diffstat (limited to '')
-rw-r--r-- | src/dirvec.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/dirvec.h b/src/dirvec.h index b9d730a17..8d840f469 100644 --- a/src/dirvec.h +++ b/src/dirvec.h @@ -35,15 +35,6 @@ int dirvec_delete(struct dirvec *dv, struct directory *del); void dirvec_add(struct dirvec *dv, struct directory *add); -static inline void -dirvec_clear(struct dirvec *dv) -{ - dv->nr = 0; -} - void dirvec_destroy(struct dirvec *dv); -int dirvec_for_each(const struct dirvec *dv, - int (*fn)(struct directory *, void *), void *arg); - #endif /* DIRVEC_H */ |