Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 9861b644e045b5ee0e16dea65b44419205090960 authored by Junio C Hamano on 10 December 2009, 23:42:30 UTC
Git 1.6.5.6
Tip revision: 9861b64
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