https://github.com/git/git
Raw File
Tip revision: 01443f01b7c6a3c6ef03268b649b119027743115 authored by Junio C Hamano on 13 December 2022, 12:25:28 UTC
Git 2.39.1
Tip revision: 01443f0
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