Staging
v0.5.1
https://github.com/git/git
Revision 6d3ef5b467eccd2769f1aa1c555d317d3c8dc707 authored by Junio C Hamano on 18 December 2020, 23:14:30 UTC, committed by Junio C Hamano on 18 December 2020, 23:15:18 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 59fcf74
Raw File
Tip revision: 6d3ef5b467eccd2769f1aa1c555d317d3c8dc707 authored by Junio C Hamano on 18 December 2020, 23:14:30 UTC
Git 2.30-rc1
Tip revision: 6d3ef5b
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