Revision efd02e92c9961063bae63da7f7446868a38f14ce authored by Junio C Hamano on 31 May 2011, 19:08:48 UTC, committed by Junio C Hamano on 31 May 2011, 19:08:48 UTC
* jl/read-tree-m-dry-run:
  Teach read-tree the -n|--dry-run option
  unpack-trees: add the dry_run flag to unpack_trees_options
2 parent s 2951df7 + ea5070c
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