#if !defined(HAMMING_H) #define HAMMING_H #include <iostream> namespace hamming { int compute(const std::string &lhs, const std::string &rhs); } // namespace hamming #endif // HAMMING_H