blob: 2e94c857682006b109314f42ae70ef8d573be5c1 [file] [log] [blame]
Julian Hall351a0722023-01-12 11:58:42 +00001/*
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
14std::string print_uuid(const uint8_t *uuid_octets);
15
16#endif /* PRINT_UUID_H */