#ifndef STR_FIND_H
#define STR_FIND_H
struct str_find_context;
/* Returns TRUE if key is found. It's possible to send the data in arbitrary
blocks and have the key still match. */
/* After str_find_more() has returned TRUE, this function returns the end
position in the previous data block where the key had matched. */
/* Reset input data. The next str_find_more() call won't try to match the key
to earlier data. */
#endif