diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2022-06-29 20:12:20 +0200 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2022-06-29 20:12:20 +0200 |
commit | ccd667be067a5148545d7ccc958e29e65a2ac458 (patch) | |
tree | cd3373253bf68835a523ddc7894d4b47c07a5ce4 /src/fs.h | |
parent | 8f946f8dd153c367fc026a3e860757a55c547b7b (diff) | |
download | OFQT-ccd667be067a5148545d7ccc958e29e65a2ac458.tar.gz OFQT-ccd667be067a5148545d7ccc958e29e65a2ac458.zip |
validate revisions, set threads to 4, do not allow concurent updates
Diffstat (limited to 'src/fs.h')
-rw-r--r-- | src/fs.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -14,6 +14,11 @@ extern "C" { int isFile(const char*); int isDir(const char*); +int isRelativePath(const char*); +int leavesRelativePath(const char*); + +char* normalizeUnixPath(char* path); + int makeDir(const char*); int removeDir(const char*); |