| 44 | static struct cache_def default_cache = CACHE_DEF_INIT; |
| 45 | |
| 46 | static inline void reset_lstat_cache(struct cache_def *cache) |
| 47 | { |
| 48 | strbuf_reset(&cache->path); |
| 49 | cache->flags = 0; |
| 50 | /* |
| 51 | * The track_flags and prefix_len_stat_func members is only |
| 52 | * set by the safeguard rule inside lstat_cache() |
| 53 | */ |
| 54 | } |
| 55 | |
| 56 | #define FL_DIR (1 << 0) |
| 57 | #define FL_NOENT (1 << 1) |
no outgoing calls
no test coverage detected