Staging
v0.5.1
https://github.com/git/git
Revision 7cdafcaacf677b9e0700fa988c247bda192db48d authored by Johannes Schindelin on 04 December 2019, 20:33:29 UTC, committed by Johannes Schindelin on 06 December 2019, 15:26:58 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent e904deb
Raw File
Tip revision: 7cdafcaacf677b9e0700fa988c247bda192db48d authored by Johannes Schindelin on 04 December 2019, 20:33:29 UTC
Git 2.15.4
Tip revision: 7cdafca
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