1 2 3 4 5 6 7 8
#ifndef LEVENSHTEIN_H #define LEVENSHTEIN_H #include <stddef.h> size_t levenshtein(const char *s1, const char *s2); #endif /* !LEVENSHTEIN_H */