Reorganise utility functions

This commit is contained in:
Dimitri Lozeve 2020-06-11 19:25:56 +02:00
parent f59603e812
commit 3f074d2bf9
18 changed files with 222 additions and 192 deletions

9
src/distance.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef DISTANCE_H
#define DISTANCE_H
#include <string.h>
unsigned int hamming(size_t len, const unsigned char s1[static len],
const unsigned char s2[static len]);
#endif /* DISTANCE_H */