https://github.com/git/git
Raw File
Tip revision: 6cd33dceed60949e2dbc32e3f0f5e67c4c882e1e authored by Junio C Hamano on 18 April 2022, 05:21:51 UTC
Git 2.36
Tip revision: 6cd33dc
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