| 642 | }; |
| 643 | |
| 644 | static inline int matches_tree_write_stack(struct tree_write_stack *tws, |
| 645 | const char *full_path) |
| 646 | { |
| 647 | return full_path[0] == tws->path[0] && |
| 648 | full_path[1] == tws->path[1] && |
| 649 | full_path[2] == '/'; |
| 650 | } |
| 651 | |
| 652 | static void write_tree_entry(struct strbuf *buf, unsigned int mode, |
| 653 | const char *path, unsigned int path_len, const |
no outgoing calls
no test coverage detected