From adc683b7fa847bc1776e3bece532c39aff12b039 Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Wed, 7 Sep 2022 14:20:59 +0100 Subject: Allow space-separated, per-word matches. --- src/fuzzy_match.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/fuzzy_match.h') diff --git a/src/fuzzy_match.h b/src/fuzzy_match.h index df4d298..d427bc6 100644 --- a/src/fuzzy_match.h +++ b/src/fuzzy_match.h @@ -3,6 +3,8 @@ #include +int32_t fuzzy_match_simple_words(const char *restrict patterns, const char *restrict str); +int32_t fuzzy_match_words(const char *restrict patterns, const char *restrict str); int32_t fuzzy_match(const char *restrict pattern, const char *restrict str); #endif /* FUZZY_MATCH_H */ -- cgit v1.2.3