Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 1 | #ifndef LEVENSHTEIN_H |
2 | #define LEVENSHTEIN_H | ||||
3 | |||||
4 | int levenshtein(const char *string1, const char *string2, | ||||
Junio C Hamano | 9517e6b | 2010-02-03 21:23:18 -0800 | [diff] [blame] | 5 | int swap_penalty, int substitution_penalty, |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 6 | int insertion_penalty, int deletion_penalty); |
7 | |||||
8 | #endif |