1 /*
2  * Copyright (c) 2024 Demant A/S
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 
8 #include <zephyr/types.h>
9 #include <zephyr/ztest.h>
10 
11 #include <zephyr/bluetooth/hci_types.h>
12 
13 #include "util/mem.h"
14 #include "util/memq.h"
15 #include "pdu_df.h"
16 #include "lll/pdu_vendor.h"
17 #include "pdu.h"
18 
19 #include "lll.h"
20 
ull_adv_sync_get(uint8_t handle)21 struct ll_adv_sync_set *ull_adv_sync_get(uint8_t handle)
22 {
23 	return NULL;
24 }
25 
ull_adv_sync_handle_get(const struct ll_adv_sync_set * sync)26 uint16_t ull_adv_sync_handle_get(const struct ll_adv_sync_set *sync)
27 {
28 	return 0;
29 }
30