https://github.com/git/git
Raw File
Tip revision: 83d5e3341b69b3116675f13d2fab208a12c79e27 authored by Taylor Blau on 06 October 2022, 00:12:39 UTC
Git 2.37.4
Tip revision: 83d5e33
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