Revision 1dad5c14f993dcd2d38ce7eb7ecedb624732d692 authored by SZEDER Gábor on 13 June 2012, 08:11:29 UTC, committed by Junio C Hamano on 13 June 2012, 17:24:46 UTC
Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 9bea2b5
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