https://github.com/git/git
Revision b0576a6a6dd3b311391090b2ce15f991ac9914cf authored by Junio C Hamano on 18 September 2012, 21:43:12 UTC, committed by Junio C Hamano on 18 September 2012, 21:43:12 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 3d7535e
Raw File
Tip revision: b0576a6a6dd3b311391090b2ce15f991ac9914cf authored by Junio C Hamano on 18 September 2012, 21:43:12 UTC
Update draft release notes to 1.8.0
Tip revision: b0576a6
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