Revision 57b76d3379ade86d72cc9db83141e6ec084e6c8c authored by Junio C Hamano on 26 May 2016, 20:17:19 UTC, committed by Junio C Hamano on 26 May 2016, 20:17:19 UTC
Doc formatting fixes.

* bn/config-doc-tt-varnames:
  config: consistently format $variables in monospaced font
  config: describe 'pathname' value type
2 parent s 4e327bb + f212dcc
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