summaryrefslogtreecommitdiff
path: root/src/fuzzy_match.h
diff options
context:
space:
mode:
authorPhil Jones <philj56@gmail.com>2022-09-07 14:20:59 +0100
committerPhil Jones <philj56@gmail.com>2022-09-07 14:34:39 +0100
commitadc683b7fa847bc1776e3bece532c39aff12b039 (patch)
tree73e1550421a7833c5d9d843c7bcdf1a070fdc7ef /src/fuzzy_match.h
parente72f81799b1184d6b1b1bf8f70ec32d9cc139556 (diff)
Allow space-separated, per-word matches.
Diffstat (limited to 'src/fuzzy_match.h')
-rw-r--r--src/fuzzy_match.h2
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 */