Create a directory and all parents. Returns 0 on success. */
| 86 | |
| 87 | /* Create a directory and all parents. Returns 0 on success. */ |
| 88 | static inline int th_mkdir_p(const char *path) { |
| 89 | return cbm_mkdir_p(path, 0755) ? 0 : -1; |
| 90 | } |
| 91 | |
| 92 | /* ── Recursive directory removal ──────────────────────────────── */ |
| 93 |
no test coverage detected