Imre Kis | 33c18be | 2023-06-21 18:47:36 +0200 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #include "rpc_uuid.h" | ||||
8 | #include <string.h> | ||||
9 | |||||
10 | bool rpc_uuid_equal(const struct rpc_uuid *uuid_a, const struct rpc_uuid *uuid_b) | ||||
11 | { | ||||
12 | return memcmp(uuid_a->uuid, uuid_b->uuid, sizeof(uuid_a->uuid)) == 0; | ||||
13 | } |