Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: a155a5f075cdc09e584a58d68bdce0c80e6c4b5a authored by Junio C Hamano on 03 December 2013, 19:16:56 UTC
Git 1.8.5.1
Tip revision: a155a5f
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