https://github.com/git/git
Raw File
Tip revision: 1de728be37791805a48485741718ca97fde06a0f authored by Will Dereham on 30 May 2017, 08:10:14 UTC
Correct a few typographical errors
Tip revision: 1de728b
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