Rework, version recycled
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#include "malunal/types/object.h"
|
||||
|
||||
|
||||
const uuid_t UUID_OBJECT_T = {
|
||||
.tl = 0xB84510EE,
|
||||
.tm = 0xBCDB,
|
||||
.thv = 0x4B26,
|
||||
.csr = 0x9E,
|
||||
.csl = 0xEF,
|
||||
.nbs = {
|
||||
0xBB, 0x5A, 0xDB,
|
||||
0x6C, 0x9C, 0x3A
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,10 @@
|
||||
#include <memory.h>
|
||||
#include "malunal/types/uuid.h"
|
||||
|
||||
malunal_bool_t
|
||||
uuid_equals(
|
||||
uuid_iptr_t uuidA,
|
||||
uuid_iptr_t uuidB
|
||||
) {
|
||||
return memcmp(uuidA, uuidB, sizeof(uuid_t)) == 0;
|
||||
}
|
||||
Reference in New Issue
Block a user