aboutsummaryrefslogtreecommitdiff
path: root/src/base/fs/exists.c
blob: f7077eacba76f0978ae1df98e72322112f9bb7c6 (plain)
1
2
3
4
5
6
7
#include "internal.h"

int
fs·exists(byte *path)
{
    return !sys·access(path, sys·FileExists);
}