15 lines
281 B
C
15 lines
281 B
C
#ifndef HAMMING_H
|
|
#define HAMMING_H
|
|
|
|
int compute(const char *lhs, const char *rhs);
|
|
|
|
/* See GNUmakefile below for explanation
|
|
* https://github.com/braoult/exercism/blob/master/c/templates/GNUmakefile
|
|
*/
|
|
#ifdef TESTALL
|
|
#undef TEST_IGNORE
|
|
#define TEST_IGNORE() {}
|
|
#endif
|
|
|
|
#endif
|