Expand description
Contains architecture independent routines.
These routines are often used as a “fallback” implementation when the more specialized architecture dependent routines are unavailable.
Modules§
- Provides architecture independent implementations of
memchr
and friends. - Provides an architecture independent implementation of the “packed pair” algorithm.
- An implementation of the Rabin-Karp substring search algorithm.
- An implementation of the Shift-Or substring search algorithm.
- An implementation of the Two-Way substring search algorithm.
Functions§
- Compare corresponding bytes in
x
andy
for equality. - Compare
n
bytes at the given pointers for equality. - Returns true if and only if
needle
is a prefix ofhaystack
. - Returns true if and only if
needle
is a suffix ofhaystack
.