gpt_uuid.h | 80 typedef uint8_t gpt_uuid_t[16]; typedef in typeref:typename:uint8_t[16] 81 extern const gpt_uuid_t gpt_uuid_nil; 85 gpt_uuid_is_nil(const gpt_uuid_t u) { 86 return memcmp(u, gpt_uuid_nil, sizeof(gpt_uuid_t)) == 0; 90 gpt_uuid_equal(const gpt_uuid_t u1, const gpt_uuid_t u2) { 91 return memcmp(u1, u2, sizeof(gpt_uuid_t)) == 0; 95 gpt_uuid_copy(gpt_uuid_t u1, const gpt_uuid_t u2) { 96 memcpy(u1, u2, sizeof(gpt_uuid_t)); [all...] |