Remove a temp directory tree. Safe to call with NULL. */
| 163 | |
| 164 | /* Remove a temp directory tree. Safe to call with NULL. */ |
| 165 | static inline void th_cleanup(const char *path) { |
| 166 | if (path && path[0]) { |
| 167 | th_rmtree(path); |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | #endif /* TEST_HELPERS_H */ |
no test coverage detected