| 113 | const struct checkout_metadata *meta, |
| 114 | void *dco); |
| 115 | static inline int convert_to_working_tree(struct index_state *istate, |
| 116 | const char *path, const char *src, |
| 117 | size_t len, struct strbuf *dst, |
| 118 | const struct checkout_metadata *meta) |
| 119 | { |
| 120 | struct conv_attrs ca; |
| 121 | convert_attrs(istate, &ca, path); |
| 122 | return convert_to_working_tree_ca(&ca, path, src, len, dst, meta); |
| 123 | } |
| 124 | static inline int async_convert_to_working_tree(struct index_state *istate, |
| 125 | const char *path, const char *src, |
| 126 | size_t len, struct strbuf *dst, |
no test coverage detected