aboutsummaryrefslogtreecommitdiffstats
path: root/src/fuzzy.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2009-03-30 19:35:57 +0400
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2009-03-30 19:35:57 +0400
commitf579fed1dee306a5cf58360589d29ae1514d25b4 (patch)
treef5d5e288553d30fc617d06bf9e48ae919092f876 /src/fuzzy.h
parentdd2fbb7a5b7e1c0d844900147486ad7ffd98c1e4 (diff)
downloadrspamd-f579fed1dee306a5cf58360589d29ae1514d25b4.tar.gz
rspamd-f579fed1dee306a5cf58360589d29ae1514d25b4.zip
* Add 3 functions:
- is_recipients_sorted - has_only_html_part - compare_recipients_distance * Update documentation * Fix build
Diffstat (limited to 'src/fuzzy.h')
-rw-r--r--src/fuzzy.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fuzzy.h b/src/fuzzy.h
index 50d1a9110..4895e6c53 100644
--- a/src/fuzzy.h
+++ b/src/fuzzy.h
@@ -37,5 +37,7 @@ fuzzy_hash_t * fuzzy_init_byte_array (GByteArray *in, memory_pool_t *pool);
*/
int fuzzy_compare_hashes (fuzzy_hash_t *h1, fuzzy_hash_t *h2);
+uint32_t lev_distance (char *s1, int len1, char *s2, int len2);
+
#endif