blob: fd88b6e7670c6852057a346303f0765b249fea75 [file] [log] [blame]
Imre Kis33c18be2023-06-21 18:47:36 +02001/*
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
10bool 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}