https://github.com/git/git
Raw File
Tip revision: cbf04937d5b9fcf0a76c28f69e6294e9e3ecd7e6 authored by Johannes Schindelin on 06 February 2023, 08:43:41 UTC
Git 2.39.2
Tip revision: cbf0493
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