Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: d8cf053dacb4f78920c112d10c7be21e4f5a5817 authored by Junio C Hamano on 30 September 2012, 05:33:25 UTC
Git 1.7.12.2
Tip revision: d8cf053
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