1 /* 2 * Copyright (c) 2023 Legrand North America, LLC. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/fff.h> 8 9 #include "fakes/called_API.h" 10 11 DEFINE_FAKE_VALUE_FUNC(int, called_API_open, const struct called_API_info **); 12 DEFINE_FAKE_VALUE_FUNC(int, called_API_close, const struct called_API_info *); 13