Julian Hall | 351a072 | 2023-01-12 11:58:42 +0000 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2023, Arm Limited. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | * | ||||
6 | */ | ||||
7 | |||||
8 | #ifndef PRINT_UUID_H | ||||
9 | #define PRINT_UUID_H | ||||
10 | |||||
11 | #include <cstdint> | ||||
12 | #include <string> | ||||
13 | |||||
14 | std::string print_uuid(const uint8_t *uuid_octets); | ||||
15 | |||||
16 | #endif /* PRINT_UUID_H */ |