| 340 | |
| 341 | // Command execution |
| 342 | int runCommand(const char* command); |
| 343 | |
| 344 | // Path and filesystem functions |
| 345 | char* Path_join(const char* a, const char* b); |
| 346 | int FileSystem_createDirectoryRecursive(const char* path); |
| 347 | int FileSystem_createDirectory(const char* path); |
| 348 | TimePoint FileSystem_getModificationTime(const char* path); |
| 349 | int FileSystem_exists(const char* path); |
nothing calls this directly
no test coverage detected