#if !defined(LUHN_H) #define LUHN_H #include <string> namespace luhn { bool valid(std::string s); } // namespace luhn #endif // LUHN_H