1 /*
2  * Copyright (c) 2019-2021, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 
8 /**
9  * \file its_flash_ram.h
10  *
11  * \brief Implementations of the flash interface functions for an emulated flash
12  *        device using RAM. See its_flash_fs_ops_t for full documentation of
13  *        functions.
14  */
15 
16 #ifndef __ITS_FLASH_RAM_H__
17 #define __ITS_FLASH_RAM_H__
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
23 extern const struct its_flash_fs_ops_t its_flash_fs_ops_ram;
24 
25 #ifdef __cplusplus
26 }
27 #endif
28 
29 #endif /* __ITS_FLASH_RAM_H__ */
30