1
0
mirror of https://git.sr.ht/~sircmpwn/gmni synced 2024-11-27 06:55:17 +01:00
gmni/include/util.h

13 lines
209 B
C
Raw Normal View History

2020-09-21 05:50:50 +02:00
#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