https://github.com/git/git
Revision b21c0bc8e63fda94d326c974bc77da87d7229ddc authored by Junio C Hamano on 23 January 2014, 16:51:14 UTC, committed by Junio C Hamano on 23 January 2014, 16:51:14 UTC
* 'master' of git://git.bogomips.org/git-svn:
  git-svn: memoize _rev_list and rebuild
2 parent s 2dbfa67 + ab0bcec
Raw File
Tip revision: b21c0bc8e63fda94d326c974bc77da87d7229ddc authored by Junio C Hamano on 23 January 2014, 16:51:14 UTC
Merge git://git.bogomips.org/git-svn
Tip revision: b21c0bc
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