Go to the source code of this file.
Data Structures | |
struct | word_vec_t |
Search query splitting. More... | |
Functions | |
void | word_vec_init (void) |
Initialize matching data structures. | |
void | word_vec_close (void) |
Terminate matching data structures. | |
guint | word_vec_make (const gchar *query, word_vec_t **wovec) |
Given a query string, return a dynamically built word vector, along with the amount of items held into that vector. | |
void | word_vec_free (word_vec_t *wovec, guint n) |
Release a word vector, containing `n' items. |
|
Terminate matching data structures.
|
|
Release a word vector, containing `n' items.
|
|
Initialize matching data structures.
|
|
Given a query string, return a dynamically built word vector, along with the amount of items held into that vector. Words are broken on non-alphanumeric boundaries.
|