mTower
uuid.h
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*
3  * Copyright (c) 2016, Linaro Limited
4  */
5 
6 #ifndef __TEE_UUID
7 #define __TEE_UUID
8 
9 //#include <optee_msg.h>
10 #include <tee_api_types.h>
11 //#include <types_ext.h>
12 
18 void tee_uuid_to_octets(uint8_t *dst, const TEE_UUID *src);
19 
25 void tee_uuid_from_octets(TEE_UUID *dst, const uint8_t *src);
26 
27 #endif /*__TEE_UUID*/
Definition: tee_api_types.h:45