https://github.com/git/git
Raw File
Tip revision: 7380a72f6b4da51f6db975f4a37c4ea9dadbf477 authored by Johannes Schindelin on 11 March 2023, 19:58:21 UTC
Git 2.35.8
Tip revision: 7380a72
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