exercism/c/hamming/hamming.h

7 lines
92 B
C
Raw Normal View History

2024-08-13 18:02:28 -04:00
#ifndef HAMMING_H
#define HAMMING_H
int compute(const char *lhs, const char *rhs);
#endif