X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fsystemd%2Fsd-id128.h;h=9f445278bbf6481399ca9c16d736893bd46c00f6;hb=9eb822a5a6b67eb82909f0d68213afbfcee6e93e;hp=48fd87671be807169473494d57788a2610a4a858;hpb=f131770b1465fbf423881f16ba85523a05f846fe;p=elogind.git diff --git a/src/systemd/sd-id128.h b/src/systemd/sd-id128.h index 48fd87671..9f445278b 100644 --- a/src/systemd/sd-id128.h +++ b/src/systemd/sd-id128.h @@ -106,6 +106,10 @@ _sd_pure_ static inline int sd_id128_equal(sd_id128_t a, sd_id128_t b) { return memcmp(&a, &b, 16) == 0; } +_sd_pure_ static inline int sd_id128_is_null(sd_id128_t a) { + return a.qwords[0] == 0 && a.qwords[1] == 0; +} + #define SD_ID128_NULL ((const sd_id128_t) { .qwords = { 0, 0 }}) _SD_END_DECLARATIONS;