File: util.h

package info (click to toggle)
ccache 3.1.10-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 1,696 kB
  • sloc: ansic: 14,640; sh: 1,689; makefile: 153; perl: 52
file content (8 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#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