aboutsummaryrefslogtreecommitdiff
path: root/src/fs.h
blob: 73b5d907739724fa3808536d7b93174db71f0526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef FS_H
#define FS_H

#ifdef __cplusplus
extern "C" {
#endif

#define OS_PATH_SEP '/'

int isFile(const char*);
int isDir(const char*);

int makeDir(const char*);
int removeDir(const char*);

#ifdef __cplusplus
}
#endif

#endif