X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fbasic%2Fpath-util.h;h=a4c80493cc972238b839f299f198fe9378abaebc;hb=4a7059686430f596810f0c83e4897154828fd352;hp=540a69c62754518c938be0492cb7d1157429540c;hpb=c733f9b08d9eadc5e671185112567ada81116bdf;p=elogind.git diff --git a/src/basic/path-util.h b/src/basic/path-util.h index 540a69c62..a4c80493c 100644 --- a/src/basic/path-util.h +++ b/src/basic/path-util.h @@ -74,10 +74,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,4 +152,7 @@ bool hidden_or_backup_file(const char *filename) _pure_; #if 0 /// UNNEEDED by elogind bool is_device_path(const char *path); +bool is_deviceallow_pattern(const char *path); + +int systemd_installation_has_version(const char *root, unsigned minimal_version); #endif // 0