1 /*
2  * Copyright (c) 2001-2019, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 #ifndef MBEDTLS_COMMON_H
7 #define MBEDTLS_COMMON_H
8 #ifdef __cplusplus
9 extern "C"
10 {
11 #endif
12 
13 /**
14  * \brief           Implementation of memset to zero
15  *
16  * \param v         adrress to set
17  * \param n         size
18  */
19 void mbedtls_zeroize_internal( void *v, size_t n );
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif  /* MBEDTLS_COMMON_H */
26