swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 740a8fc2249cf7d8b39ab50a25bbf86554158ae7 authored by Junio C Hamano on 12 September 2011, 17:33:03 UTC
Git 1.7.6.3
Tip revision: 740a8fc
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