diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /external/bluez_bluetooth/inc/bluetooth/hci_lib.h | |
parent | Initial commit. (diff) | |
download | libreoffice-upstream/4%7.4.7.tar.xz libreoffice-upstream/4%7.4.7.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'external/bluez_bluetooth/inc/bluetooth/hci_lib.h')
-rw-r--r-- | external/bluez_bluetooth/inc/bluetooth/hci_lib.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/external/bluez_bluetooth/inc/bluetooth/hci_lib.h b/external/bluez_bluetooth/inc/bluetooth/hci_lib.h new file mode 100644 index 000000000..d6886c146 --- /dev/null +++ b/external/bluez_bluetooth/inc/bluetooth/hci_lib.h @@ -0,0 +1,23 @@ +/**************************************************************************** + **************************************************************************** + *** + *** This header was automatically generated from a Bluez header + *** of the same name, to make information necessary for userspace to + *** call into the kernel available to Android. It contains only constants, + *** structures, and macros generated from the original header, and thus, + *** contains no copyrightable information. + *** + **************************************************************************** + ****************************************************************************/ +#ifndef __HCI_LIB_H +#define __HCI_LIB_H + +#ifdef __cplusplus +#endif +#ifdef __cplusplus +#endif +static inline int hci_test_bit(int nr, void* addr) +{ + return *((uint32_t*)addr + (nr >> 5)) & (1 << (nr & 31)); +} +#endif |