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