Remove a temp directory tree. Safe to call with NULL. */
| 217 | |
| 218 | /* Remove a temp directory tree. Safe to call with NULL. */ |
| 219 | static inline void th_cleanup(const char *path) { |
| 220 | if (path && path[0]) { |
| 221 | th_rmtree(path); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | #endif /* TEST_HELPERS_H */ |
no test coverage detected