Staging
v0.5.1
https://github.com/git/git
Revision 1c52ecf4ba0f4f7af72775695fee653f50737c71 authored by Junio C Hamano on 14 December 2020, 18:30:05 UTC, committed by Junio C Hamano on 14 December 2020, 18:30:05 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 3fc7fc1
Raw File
Tip revision: 1c52ecf4ba0f4f7af72775695fee653f50737c71 authored by Junio C Hamano on 14 December 2020, 18:30:05 UTC
Git 2.30-rc0
Tip revision: 1c52ecf
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