Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: b28aeab4ec1df28f3be3cb62ff4b85e5332d8d13 authored by Junio C Hamano on 09 May 2014, 18:23:25 UTC
Git 2.0-rc3
Tip revision: b28aeab
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