Revision d0f1ea6003d97e63110fa7d50bb07f546a909b6e authored by Junio C Hamano on 26 April 2012, 17:23:15 UTC, committed by Junio C Hamano on 26 April 2012, 17:23:15 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent b2bab5b
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