diff options
Diffstat (limited to 'fuzzy.c')
-rw-r--r-- | fuzzy.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -27,6 +27,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include "fuzzy.h" #if defined(__GNUC__) && __GNUC__ >= 3 #define likely(x) __builtin_expect(!!(x), 1) @@ -36,8 +37,6 @@ #define unlikely(x) x #endif -#define SPAMSUM_LENGTH 64 -#define FUZZY_MAX_RESULT (SPAMSUM_LENGTH + (SPAMSUM_LENGTH/2 + 20)) #define ROLLING_WINDOW 7 #define MIN_BLOCKSIZE 3 #define HASH_PRIME 0x01000193 |