| 137 | const char *path, const char *src, size_t len, |
| 138 | struct strbuf *dst); |
| 139 | static inline int would_convert_to_git(struct index_state *istate, |
| 140 | const char *path) |
| 141 | { |
| 142 | return convert_to_git(istate, path, NULL, 0, NULL, 0); |
| 143 | } |
| 144 | /* Precondition: would_convert_to_git_filter_fd(path) == true */ |
| 145 | void convert_to_git_filter_fd(struct index_state *istate, |
| 146 | const char *path, int fd, |
no test coverage detected