mirror of
https://git.sr.ht/~sircmpwn/gmni
synced 2024-11-23 13:13:26 +01:00
13 lines
209 B
C
13 lines
209 B
C
#ifndef GEMINI_UTIL_H
|
|
#define GEMINI_UTIL_H
|
|
|
|
struct pathspec {
|
|
const char *var;
|
|
const char *path;
|
|
};
|
|
|
|
char *getpath(const struct pathspec *paths, size_t npaths);
|
|
int mkdirs(char *path, mode_t mode);
|
|
|
|
#endif
|