| 494 | } |
| 495 | |
| 496 | char *git_mkdtemp(char *pattern) |
| 497 | { |
| 498 | return git_mkdstemps_mode(pattern, 0, 0700, true) ? NULL : pattern; |
| 499 | } |
| 500 | |
| 501 | int git_mkstemps_mode(char *pattern, int suffix_len, int mode) |
| 502 | { |
nothing calls this directly
no test coverage detected