Imported Upstream version 3.4
[platform/upstream/ccache.git] / unittest / util.h
1 #ifndef TEST_UTIL_H
2 #define TEST_UTIL_H
3
4 #include <stdbool.h>
5
6 bool path_exists(const char *path);
7 bool is_symlink(const char *path);
8 void create_file(const char *path, const char *content);
9
10 #endif