summaryrefslogtreecommitdiff
path: root/tools/fuzzy.h
blob: 7d904660ae53b64c30a5a825a5e4b1fa8ebefe06 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __FUZZY_H__
#define __FUZZY_H__

#include <string>

size_t letter_distance(char letter1, char letter2); 
size_t word_distance(const std::string& word1, const std::string& word2);
size_t sentence_distance(const std::string& sentence1, const std::string& sentence2);

#endif