Staging
v0.5.1
https://github.com/git/git
Revision 6406bdc0b95715a087fdeeb0f6adf3deb80a25b8 authored by Junio C Hamano on 03 October 2016, 20:24:18 UTC, committed by Junio C Hamano on 03 October 2016, 20:24:18 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 11738dd
Raw File
Tip revision: 6406bdc0b95715a087fdeeb0f6adf3deb80a25b8 authored by Junio C Hamano on 03 October 2016, 20:24:18 UTC
Git 2.10.1
Tip revision: 6406bdc
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