https://github.com/git/git
Raw File
Tip revision: f900c8326a43303685c46b279b9f70411bff1a4b authored by Junio C Hamano on 15 December 2015, 17:47:11 UTC
Git 2.7-rc1
Tip revision: f900c83
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