diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-20 02:26:05 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-20 02:31:54 +0200 |
commit | c4e2ceae941d02de5574becbfd3b4db15de2eda3 (patch) | |
tree | c0bda809e0b860f5b0f8e66942dd486c17f2e309 /src/util.h | |
parent | d06dacd0020af7e31ff6089deff339b00ed979e3 (diff) |
dbus: follow standardized fdo PropertiesChanged signal spec
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index e8d9b3e74b..7490236fa0 100644 --- a/src/util.h +++ b/src/util.h @@ -339,6 +339,9 @@ char *ellipsize(const char *s, unsigned length, unsigned percent); int touch(const char *path); +#define NULSTR_FOREACH(i, l) \ + for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1) + const char *ioprio_class_to_string(int i); int ioprio_class_from_string(const char *s); |