Revision 653078bbddef3ecd454c3e36b9e43629128967db authored by Junio C Hamano on 10 February 2017, 20:52:27 UTC, committed by Junio C Hamano on 10 February 2017, 20:52:27 UTC
Doc update.

* nd/rev-list-all-includes-HEAD-doc:
  rev-list-options.txt: update --all about HEAD
2 parent s c1462b8 + 209df26
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