diff options
Diffstat (limited to 'src/fuzzy_match.h')
-rw-r--r-- | src/fuzzy_match.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 <stdint.h> +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 */ |