| Index: third_party/hunspell/src/hunspell/suggestmgr.hxx
|
| diff --git a/third_party/hunspell/src/hunspell/suggestmgr.hxx b/third_party/hunspell/src/hunspell/suggestmgr.hxx
|
| index 051c3bcf9f3e7d4a5ffd0023df7b1014351f310e..0b80faceec054a19388e3d0d0bc5ea07f71d97f4 100644
|
| --- a/third_party/hunspell/src/hunspell/suggestmgr.hxx
|
| +++ b/third_party/hunspell/src/hunspell/suggestmgr.hxx
|
| @@ -181,8 +181,12 @@ class SuggestMgr {
|
| const std::vector<mapentry>&,
|
| int*,
|
| clock_t*);
|
| + int ngram(int n, const std::vector<w_char>& su1,
|
| + const std::vector<w_char>& su2, int opt);
|
| int ngram(int n, const std::string& s1, const std::string& s2, int opt);
|
| int mystrlen(const char* word);
|
| + int leftcommonsubstring(const std::vector<w_char>& su1,
|
| + const std::vector<w_char>& su2);
|
| int leftcommonsubstring(const char* s1, const char* s2);
|
| int commoncharacterpositions(const char* s1, const char* s2, int* is_swap);
|
| void bubblesort(char** rwd, char** rwd2, int* rsc, int n);
|
|
|