Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: d599e0484f8ebac8cc50e9557a4c3d246826843d authored by Junio C Hamano on 24 April 2010, 01:27:17 UTC
Git 1.7.1
Tip revision: d599e04
levenshtein.h
#ifndef LEVENSHTEIN_H
#define LEVENSHTEIN_H

int levenshtein(const char *string1, const char *string2,
	int swap_penalty, int substitution_penalty,
	int insertion_penalty, int deletion_penalty);

#endif
back to top