X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fsystemd%2Fsd-id128.h;h=126d83ce8a87409d57ee93ae1a29a2fdf1ccb061;hp=30cb686557e14d7cd36194b4921e1277b2c31ee2;hb=0675cc4a02dfa3e7abc47d0c2117bf413b1d7698;hpb=5430f7f2bc7330f3088b894166bf3524a067e3d8 diff --git a/src/systemd/sd-id128.h b/src/systemd/sd-id128.h index 30cb68655..126d83ce8 100644 --- a/src/systemd/sd-id128.h +++ b/src/systemd/sd-id128.h @@ -23,13 +23,14 @@ ***/ #include -#include #include #ifdef __cplusplus extern "C" { #endif +/* 128 Bit ID APIs. See sd-id128(3) for more information. */ + typedef union sd_id128 sd_id128_t; union sd_id128 { @@ -55,10 +56,11 @@ int sd_id128_get_boot(sd_id128_t *ret); * times. It is hence not a good idea to call this macro with an * expensive function as paramater or an expression with side * effects */ + #define SD_ID128_FORMAT_STR "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x" #define SD_ID128_FORMAT_VAL(x) (x).bytes[0], (x).bytes[1], (x).bytes[2], (x).bytes[3], (x).bytes[4], (x).bytes[5], (x).bytes[6], (x).bytes[7], (x).bytes[8], (x).bytes[9], (x).bytes[10], (x).bytes[11], (x).bytes[12], (x).bytes[13], (x).bytes[14], (x).bytes[15] -static inline bool sd_id128_equal(sd_id128_t a, sd_id128_t b) { +static inline int sd_id128_equal(sd_id128_t a, sd_id128_t b) { return memcmp(&a, &b, 16) == 0; }