quote-bot/levenshtein.h
2021-03-09 01:39:19 -05:00

7 lines
120 B
C

#ifndef LEVENSHTEIN_H
#define LEVENSHTEIN_H
int levenshtein(const char *s, const char *t);
#endif /* LEVENSHTEIN_H */