2020-09-27 13:46:21 +00:00
|
|
|
/*
|
2023-02-23 20:57:56 +00:00
|
|
|
* Copyright (c) 2020-2023 ndeadly
|
2020-09-27 13:46:21 +00:00
|
|
|
*
|
2021-01-26 03:03:26 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
2020-09-27 13:46:21 +00:00
|
|
|
*
|
2021-01-26 03:03:26 +00:00
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
2020-09-27 13:46:21 +00:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include <stratosphere.hpp>
|
2021-08-09 20:57:16 +00:00
|
|
|
#include "bluetooth_mitm/bluetooth/bluetooth_types.hpp"
|
2020-09-27 13:46:21 +00:00
|
|
|
|
2021-08-09 20:57:16 +00:00
|
|
|
namespace ams::utils {
|
2020-09-27 13:46:21 +00:00
|
|
|
|
2022-04-27 08:48:46 +00:00
|
|
|
bool BluetoothAddressCompare(const bluetooth::Address *addr1, const bluetooth::Address *addr2);
|
2021-08-09 20:57:16 +00:00
|
|
|
Result BluetoothAddressToString(const bluetooth::Address *address, char *out, size_t out_size);
|
|
|
|
|
2020-09-27 13:46:21 +00:00
|
|
|
}
|