fhq-server  v0.2.33
Documentation for fhq-server. FreeHackQuest is an open source platform for competitions of computer security.
wsjcpp_levenshtein.h
Go to the documentation of this file.
1 // Author: Igor Polyakov
2 
3 #ifndef WSJCPP_LEVENSHTEIN_H
4 #define WSJCPP_LEVENSHTEIN_H
5 
6 #include <string>
7 
9  public:
10  static int distance(const std::string &str1, const std::string &str2);
11 };
12 
13 #endif // WSJCPP_LEVENSHTEIN_H
static int distance(const std::string &str1, const std::string &str2)
Definition: wsjcpp_levenshtein.cpp:6
Definition: wsjcpp_levenshtein.h:8