blob: 4105bf3549560acc7bd187b8a16fff2a5e739d09 [file] [log] [blame]
Johannes Schindelin8af84da2008-08-31 15:50:23 +02001#ifndef LEVENSHTEIN_H
2#define LEVENSHTEIN_H
3
4int levenshtein(const char *string1, const char *string2,
Junio C Hamano9517e6b2010-02-03 21:23:18 -08005 int swap_penalty, int substitution_penalty,
Johannes Schindelin8af84da2008-08-31 15:50:23 +02006 int insertion_penalty, int deletion_penalty);
7
8#endif