diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2014-11-13 19:36:08 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-11-13 11:58:59 -0800 |
commit | 4096383fb57ab33e9adc32a13f20b7a58a2c33c7 (patch) | |
tree | f6c1a20f0ea269256a0124955487b911dae6b583 /macos.c | |
parent | 61dc19d2e0bc69004b03a990993eda547f4e0093 (diff) | |
download | subsurface-4096383fb57ab33e9adc32a13f20b7a58a2c33c7.tar.gz |
Add subsurface_access()
For our usage the method will acept UTF-8 paths,
which are converted to UTF-16 on Win32.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'macos.c')
-rw-r--r-- | macos.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -11,7 +11,7 @@ #include <sys/syslimits.h> #include <stdio.h> #include <fcntl.h> -#include <dirent.h> +#include <unistd.h> void subsurface_user_info(struct user_info *info) { /* Nothing, let's use libgit2-20 on MacOS */ } @@ -147,6 +147,11 @@ void *subsurface_opendir(const char *path) return (void *)opendir(path); } +int subsurface_access(const char *path, int mode) +{ + return access(path, mode); +} + struct zip *subsurface_zip_open_readonly(const char *path, int flags, int *errorp) { return zip_open(path, flags, errorp); |