Staging
v0.5.1
Revision c78db87a32c9698492b4d4a2c022a9066c865920 authored by Junio C Hamano on 22 January 2022, 01:54:57 UTC, committed by Junio C Hamano on 22 January 2022, 01:54:57 UTC
* js/apply-partial-clone-filters-recursively:
  clone, submodule: pass partial clone filters to submodules
2 parent s f48bc99 + 9e21083
Raw File
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