X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fbasic%2Fpath-util.h;h=3e1519efe4f5629d37e2e2fc9d109f5af3d14352;hb=ed1d9d8147489c95859f436594ae837209c4907e;hp=786276c0168ad6ceac3eb8efcf4aefdf7bb18c10;hpb=6a4cd88ce4bfa430a184c2f2b968aa5a21574d34;p=elogind.git diff --git a/src/basic/path-util.h b/src/basic/path-util.h index 786276c01..3e1519efe 100644 --- a/src/basic/path-util.h +++ b/src/basic/path-util.h @@ -24,6 +24,7 @@ #include #include "macro.h" +#include "string-util.h" #include "time-util.h" #define DEFAULT_PATH_NORMAL "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin" @@ -74,10 +75,22 @@ static inline bool path_equal_ptr(const char *a, const char *b) { }) #if 0 /// UNNEEDED by elogind +#define PATH_STARTSWITH_SET(p, ...) \ + ({ \ + char **s; \ + bool _found = false; \ + STRV_FOREACH(s, STRV_MAKE(__VA_ARGS__)) \ + if (path_startswith(p, *s)) { \ + _found = true; \ + break; \ + } \ + _found; \ + }) + int path_strv_make_absolute_cwd(char **l); #endif // 0 -char** path_strv_resolve(char **l, const char *prefix); -char** path_strv_resolve_uniq(char **l, const char *prefix); +char** path_strv_resolve(char **l, const char *root); +char** path_strv_resolve_uniq(char **l, const char *root); #if 0 /// UNNEEDED by elogind int find_binary(const char *name, char **filename); @@ -140,6 +153,9 @@ bool hidden_or_backup_file(const char *filename) _pure_; #if 0 /// UNNEEDED by elogind bool is_device_path(const char *path); -#endif // 0 +bool is_deviceallow_pattern(const char *path); int systemd_installation_has_version(const char *root, unsigned minimal_version); +#endif // 0 + +bool dot_or_dot_dot(const char *path);