blob: eb78a05fe6e1ceb0cd0261460779012ff852e4a3 [file] [log] [blame]
/*
* Copyright (c) 2023 Codecoup
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef MOCKS_CONN_H_
#define MOCKS_CONN_H_
#include <zephyr/bluetooth/conn.h>
struct bt_conn {
uint8_t index;
struct bt_conn_info info;
};
void mock_bt_conn_disconnected(struct bt_conn *conn, uint8_t err);
#endif /* MOCKS_CONN_H_ */