Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: abf411e28d9df669b0e690578a1eb95c0bd29847 authored by Junio C Hamano on 15 December 2010, 19:32:57 UTC
Git 1.6.6.3
Tip revision: abf411e
levenshtein.h
#ifndef LEVENSHTEIN_H
#define LEVENSHTEIN_H

int levenshtein(const char *string1, const char *string2,
	int swap_penalty, int substition_penalty,
	int insertion_penalty, int deletion_penalty);

#endif
back to top