1 /*
2  * Copyright (c) 2022, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef PACKEDC_BLOCK_STORAGE_PROVIDER_SERIALIZER_H
8 #define PACKEDC_BLOCK_STORAGE_PROVIDER_SERIALIZER_H
9 
10 #include <service/block_storage/provider/serializer/block_storage_serializer.h>
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 /**
17  * Singleton method to provide access to the packed-c serializer
18  * for the block storage service provider.
19  */
20 const struct block_storage_serializer *packedc_block_storage_serializer_instance(void);
21 
22 #ifdef __cplusplus
23 } /* extern "C" */
24 #endif
25 
26 #endif /* PACKEDC_BLOCK_STORAGE_PROVIDER_SERIALIZER_H */
27