mirror of
https://github.com/ish-app/ish.git
synced 2026-01-25 14:06:40 +00:00
13 lines
212 B
C
13 lines
212 B
C
#ifndef FS_FIX_PATH_H
|
|
#define FS_FIX_PATH_H
|
|
|
|
static inline const char *fix_path(const char *path) {
|
|
if (path[0] == '\0')
|
|
return ".";
|
|
if (path[0] == '/')
|
|
path++;
|
|
return path;
|
|
}
|
|
|
|
#endif
|