mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 21:30:47 -05:00
6 lines
92 B
C
6 lines
92 B
C
#ifndef HAMMING_H
|
|
#define HAMMING_H
|
|
|
|
int compute(const char *lhs, const char *rhs);
|
|
|
|
#endif
|