mirror of
https://github.com/reactos/ccache.git
synced 2024-11-23 11:49:41 +00:00
9 lines
177 B
C
9 lines
177 B
C
#ifndef TEST_UTIL_H
|
|
#define TEST_UTIL_H
|
|
|
|
bool path_exists(const char *path);
|
|
bool is_symlink(const char *path);
|
|
void create_file(const char *path, const char *content);
|
|
|
|
#endif
|