exercism/c/hamming/hamming.h

6 lines
92 B
C

#ifndef HAMMING_H
#define HAMMING_H
int compute(const char *lhs, const char *rhs);
#endif