gpt_uuid.h | 82 typedef uint8_t gpt_uuid_t[16]; typedef in typeref:typename:uint8_t[16] 83 extern const gpt_uuid_t gpt_uuid_nil; 87 gpt_uuid_is_nil(const gpt_uuid_t u) { 88 return memcmp(u, gpt_uuid_nil, sizeof(gpt_uuid_t)) == 0; 92 gpt_uuid_equal(const gpt_uuid_t u1, const gpt_uuid_t u2) { 93 return memcmp(u1, u2, sizeof(gpt_uuid_t)) == 0; 97 gpt_uuid_copy(gpt_uuid_t u1, const gpt_uuid_t u2) { 98 memcpy(u1, u2, sizeof(gpt_uuid_t)); [all...] |