#define EV_STR_IMPLEMENTATION #include "ev_str.h" #include int main(void) { evstring text = evstr("aaab"); evstring query = evstr("aab"); evstring_view match = evstring_findFirst(text, query); assert(match.len == 3); assert(match.offset == 1); return 0; }