| 20 | #include <dirent.h> |
| 21 | |
| 22 | static void clear_dir(const char *dirname) |
| 23 | { |
| 24 | struct strbuf path = REFTABLE_BUF_INIT; |
| 25 | strbuf_addstr(&path, dirname); |
| 26 | remove_dir_recursively(&path, 0); |
| 27 | strbuf_release(&path); |
| 28 | } |
| 29 | |
| 30 | static int count_dir_entries(const char *dirname) |
| 31 | { |