mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-08 05:43:53 +00:00

These include directives were missing from both `uuid.h` files. Change-Id: I875dfda3e0985728277b72f0e7597dde5cf9d304 Signed-off-by: Chris Kay <chris.kay@arm.com>
21 lines
490 B
C
21 lines
490 B
C
/*
|
|
* Copyright (c) 2021-2023, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef UUID_COMMON_H
|
|
#define UUID_COMMON_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#define UUID_BYTES_LENGTH 16
|
|
#define UUID_STRING_LENGTH 36
|
|
|
|
int read_uuid(uint8_t *dest, char *uuid);
|
|
bool uuid_match(uint32_t *uuid1, uint32_t *uuid2);
|
|
void copy_uuid(uint32_t *to_uuid, uint32_t *from_uuid);
|
|
bool is_null_uuid(uint32_t *uuid);
|
|
|
|
#endif /* UUID_COMMON_H */
|