summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util.c11
-rw-r--r--util.h2
2 files changed, 13 insertions, 0 deletions
diff --git a/util.c b/util.c
index 939b2b06e9..a0f26762dc 100644
--- a/util.c
+++ b/util.c
@@ -1193,6 +1193,17 @@ finish:
return r;
}
+bool chars_intersect(const char *a, const char *b) {
+ const char *p;
+
+ /* Returns true if any of the chars in a are in b. */
+ for (p = a; *p; p++)
+ if (strchr(b, *p))
+ return true;
+
+ return false;
+}
+
static const char *const ioprio_class_table[] = {
[IOPRIO_CLASS_NONE] = "none",
[IOPRIO_CLASS_RT] = "realtime",
diff --git a/util.h b/util.h
index 3ee536add5..14f1a7a177 100644
--- a/util.h
+++ b/util.h
@@ -157,6 +157,8 @@ char *bus_path_unescape(const char *s);
bool ignore_file(const char *filename);
+bool chars_intersect(const char *a, const char *b);
+
#define DEFINE_STRING_TABLE_LOOKUP(name,type) \
const char *name##_to_string(type i) { \
if (i < 0 || i >= (type) ELEMENTSOF(name##_table)) \