diff options
author | Phil Jones <philj56@gmail.com> | 2022-09-07 14:20:59 +0100 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2022-09-07 14:34:39 +0100 |
commit | adc683b7fa847bc1776e3bece532c39aff12b039 (patch) | |
tree | 73e1550421a7833c5d9d843c7bcdf1a070fdc7ef /src/fuzzy_match.h | |
parent | e72f81799b1184d6b1b1bf8f70ec32d9cc139556 (diff) |
Allow space-separated, per-word matches.
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 */ |