1 /*
2  * Copyright (c) 2024, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 
8 #ifndef __RSE_OTP_EMULATION_H__
9 #define __RSE_OTP_EMULATION_H__
10 
11 #include <stdbool.h>
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 bool rse_otp_emulation_is_enabled(void);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif /* __RSE_OTP_EMULATION_H__ */
24