summaryrefslogtreecommitdiff
path: root/test/util.h
blob: 23636b9328de13e042954fc7e1dea7dfb0dd248b (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef TEST_UTIL_H
#define TEST_UTIL_H

#include <stdbool.h>

bool path_exists(const char *path);
bool is_symlink(const char *path);
void create_file(const char *path, const char *content);

#endif