blob: 5651d0d583e7bfc07cd925ea576a4448707713ae [file] [log] [blame]
David Horstmanna65a8ff2021-03-01 19:34:37 +00001/*
2 * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef UUID_H
8#define UUID_H
9
10#define UUID_BYTES_LENGTH 16
11#define UUID_STRING_LENGTH 36
12
13int read_uuid(uint8_t *dest, char *uuid);
14
15#endif /* UUID_H */