1 /*
2  * Copyright (c) 2025 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <stdbool.h>
8 #include <stdint.h>
9 
10 #include <zephyr/bluetooth/addr.h>
11 #include <zephyr/fff.h>
12 
bt_le_bond_exists(uint8_t id,const bt_addr_le_t * addr)13 bool bt_le_bond_exists(uint8_t id, const bt_addr_le_t *addr)
14 {
15 	return true;
16 }
17