Staging
v0.5.1
Revision ab0964d951e4ea88f9ea2cbb88388c1bcd4ae911 authored by Junio C Hamano on 20 December 2009, 20:15:02 UTC, committed by Junio C Hamano on 20 December 2009, 20:15:02 UTC
Hopefully the last rc before the final one.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent b6b9f83
Raw File
levenshtein.h
#ifndef LEVENSHTEIN_H
#define LEVENSHTEIN_H

int levenshtein(const char *string1, const char *string2,
	int swap_penalty, int substition_penalty,
	int insertion_penalty, int deletion_penalty);

#endif
back to top