17 lines
382 B
C
17 lines
382 B
C
/*
|
|
* Copyright (c) 2022 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include <zephyr/fff.h>
|
|
#include <zephyr/bluetooth/addr.h>
|
|
#include <host/keys.h>
|
|
|
|
/* List of fakes used by this unit tester */
|
|
#define ID_FFF_FAKES_LIST(FAKE) \
|
|
FAKE(bt_id_del) \
|
|
|
|
DECLARE_FAKE_VOID_FUNC(bt_id_del, struct bt_keys *);
|