Staging
v0.5.1
https://github.com/git/git
Revision 5d213e46bb7b880238ff5ea3914e940a50ae9369 authored by Junio C Hamano on 11 August 2021, 18:54:03 UTC, committed by Junio C Hamano on 11 August 2021, 19:36:18 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 4c90d89
Raw File
Tip revision: 5d213e46bb7b880238ff5ea3914e940a50ae9369 authored by Junio C Hamano on 11 August 2021, 18:54:03 UTC
Git 2.33-rc2
Tip revision: 5d213e4
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