memmem
======
This is a crate for substring searching (with functionality similar to the
`memmem` function in C). So far, it only contains a copy of the two-way search
implementation from rust's standard library (but with an API that allows
searching in `&[u8]`). Eventually, we plan to provide other searching
algorithms, and possibly also some heuristics to choose a good searching
algorithm based on the substring we are looking for.
[](https://travis-ci.org/jneem/memmem)
[](https://coveralls.io/github/jneem/memmem?branch=master)
[Documentation](http://jneem.github.io/memmem/memmem/index.html)