7 lines
120 B
C
7 lines
120 B
C
|
#ifndef LEVENSHTEIN_H
|
||
|
#define LEVENSHTEIN_H
|
||
|
|
||
|
int levenshtein(const char *s, const char *t);
|
||
|
|
||
|
#endif /* LEVENSHTEIN_H */
|