TF-M Reference Manual  1.2.0
TrustedFirmware-M
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
tfm_core_utils.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2020, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 
8 #ifndef __TFM_CORE_UTILS_H__
9 #define __TFM_CORE_UTILS_H__
10 
11 #include <stddef.h>
12 #include <stdint.h>
13 
25 void *spm_memcpy(void *dest, const void *src, size_t n);
26 
36 void *spm_memset(void *s, int c, size_t n);
37 
38 #endif /* __TFM_CORE_UTILS_H__ */
void * spm_memcpy(void *dest, const void *src, size_t n)
Memory copy function for TF-M core.
void * spm_memset(void *s, int c, size_t n)
Memory set function for TF-M core.