diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-11-15 14:47:18 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-11-15 14:47:18 +0000 |
commit | f4d3c21d16cd1c71f7a4bb7772e77e768a7ab8d1 (patch) | |
tree | 84b5d411e9192dfb3a003f115faf58ba89afacbc /src/libutil/str_util.h | |
parent | 3dadbb5159db3a59342834082144690588aa61db (diff) | |
download | rspamd-f4d3c21d16cd1c71f7a4bb7772e77e768a7ab8d1.tar.gz rspamd-f4d3c21d16cd1c71f7a4bb7772e77e768a7ab8d1.zip |
[Feature] Store stop words and allow to query them
Diffstat (limited to 'src/libutil/str_util.h')
-rw-r--r-- | src/libutil/str_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libutil/str_util.h b/src/libutil/str_util.h index 73637a62c..100b64b88 100644 --- a/src/libutil/str_util.h +++ b/src/libutil/str_util.h @@ -61,6 +61,8 @@ gboolean rspamd_str_equal (gconstpointer v, gconstpointer v2); */ guint rspamd_ftok_icase_hash (gconstpointer key); gboolean rspamd_ftok_icase_equal (gconstpointer v, gconstpointer v2); +guint rspamd_ftok_hash (gconstpointer key); +gboolean rspamd_ftok_equal (gconstpointer v, gconstpointer v2); guint rspamd_gstring_icase_hash (gconstpointer key); gboolean rspamd_gstring_icase_equal (gconstpointer v, gconstpointer v2); |