Toggle navigation
Documentation
The friendly Operating System for the Internet of Things
Main Page
Related Pages
Supported Boards
Modules
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Enumerations
Data Structures
Data Structures
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
w
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerator
Related Symbols
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
▼
RIOT OS
►
RIOT Documentation
mutex.doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
doc
RIOT Vision
►
Governance of the RIOT Community
►
Roadmap
►
Code of Conduct Information
►
Creating modules
►
Creating an application
►
Porting boards
►
Writing a Device Driver in RIOT
►
Getting started
►
Flashing via RIOT's Build System
►
Terminal programs configuration
►
Build In Docker
►
Running and creating tests
►
Hints for quicker & better RIOT development
►
Build System Basics
►
List of Features (Features as Build System Enties)
►
Kconfig in RIOT
►
Using C++ in RIOT
►
Using Rust in RIOT
►
Advanced build system tricks
►
Debugging Tools
►
Emulators
►
Release cycle
►
IO-Mapping and Shields
►
Changelog
►
Removed Features and Modules
Deprecated List
Todo List
Supported Boards
►
Modules
►
Namespaces
►
Data Structures
▼
Files
▼
File List
►
boards
►
core
►
cpu
►
dist
►
drivers
►
makefiles
▼
pkg
►
cryptoauthlib
►
driver_bme680
►
driver_cryptocell_310
►
edhoc-c
►
esp8266_sdk
►
etl
►
fatfs
►
flashdb
►
libb2
►
libcose
►
libschc
►
littlefs
►
littlefs2
▼
lua
▼
contrib
binsearch.h
►
include
►
lv_drivers
►
lvgl
►
lwip
►
mbedtls
►
micropython
►
mynewt-core
►
nanocbor
►
nimble
►
nrfx
►
opendsme
►
openthread
►
openwsn
►
paho-mqtt
►
semtech-loramac
►
spiffs
►
tinydtls
►
tinyusb
►
tinyvcdiff
►
tlsf
►
u8g2
►
ucglib
►
uwb-core
►
uwb-dw1000
►
wakaama
►
wolfssl
►
sys
►
Globals
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
binsearch.h
1
/*
2
* Copyright (C) 2018 Freie Universität Berlin
3
*
4
* This file is subject to the terms and conditions of the GNU Lesser
5
* General Public License v2.1. See the file LICENSE in the top level
6
* directory for more details.
7
*/
8
44
#ifndef BINSEARCH_H
45
#define BINSEARCH_H
46
47
#include <stdint.h>
48
#include <
errno.h
>
49
50
#ifdef __cplusplus
51
extern
"C"
{
52
#endif
53
57
#define _ENSURE_LVALUE(x) ((void)sizeof(&(x)))
58
63
#define _ARRAY_STRIDE(arr) ((size_t)((const uint8_t *)((arr) + 1) - (const uint8_t *)(arr)))
64
69
#define _ARRAY_MEMBER_OFFS(arr, member) \
70
((size_t)((const uint8_t *)(&((arr)->member)) - (const uint8_t *)(arr)))
71
82
#define BINSEARCH_STR(arr, nmemb, member, str, n) \
83
(_ENSURE_LVALUE(arr), \
84
(binsearch_str((arr), _ARRAY_MEMBER_OFFS(arr, member), _ARRAY_STRIDE(arr), \
85
(nmemb), (str), (n))) \
86
)
87
95
#define BINSEARCH_STR_P(arr, nmemb, member, str, n) \
96
(_ENSURE_LVALUE(arr), \
97
(binsearch_str_p((arr), _ARRAY_MEMBER_OFFS(arr, member), _ARRAY_STRIDE(arr), \
98
(nmemb), (str), (n))) \
99
)
100
120
int
binsearch_str(
const
void
*start,
size_t
offset,
size_t
stride,
size_t
nmemb,
121
const
char
*str,
size_t
n);
122
129
const
void
*binsearch_str_p(
const
void
*start,
size_t
offset,
size_t
stride,
130
size_t
nmemb,
const
char
*str,
size_t
n);
131
132
#ifdef __cplusplus
133
}
134
#endif
135
136
#endif
/* BINSEARCH_H */
errno.h
Generated on Thu Apr 3 2025 10:49:41 by
1.12.0