Revision b893e88191c61bf44ae83588d3a01e543bcb85c9 authored by Junio C Hamano on 28 November 2012, 21:42:30 UTC, committed by Junio C Hamano on 28 November 2012, 21:42:30 UTC
* mm/status-push-pull-advise:
  status: add advice on how to push/pull to tracking branch
2 parent s 682098b + c190ced
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