Staging
v0.8.1
Revision fc849d8d6b90e5c1e0c37bc0d60dd92b2fe7347f authored by Junio C Hamano on 23 October 2017, 05:44:17 UTC, committed by Junio C Hamano on 23 October 2017, 05:44:17 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 95c1a79
Raw File
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