Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 111ef79afe185f8731920569450f6a65320f5d5f authored by Junio C Hamano on 11 October 2017, 05:54:04 UTC
Git 2.15-rc1
Tip revision: 111ef79
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