Staging
v0.5.1
https://github.com/git/git
Revision ac84098b7e32406a982ac01cc76a663d5605224b authored by Junio C Hamano on 28 October 2016, 16:02:44 UTC, committed by Junio C Hamano on 28 October 2016, 16:02:44 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 020222e
Raw File
Tip revision: ac84098b7e32406a982ac01cc76a663d5605224b authored by Junio C Hamano on 28 October 2016, 16:02:44 UTC
Git 2.10.2
Tip revision: ac84098
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