mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-12 14:40:46 -05:00
7 lines
92 B
C
7 lines
92 B
C
|
#ifndef HAMMING_H
|
||
|
#define HAMMING_H
|
||
|
|
||
|
int compute(const char *lhs, const char *rhs);
|
||
|
|
||
|
#endif
|