Newer
Older
exercism-cpp / hexadecimal / hexadecimal.h
@Wook Song Wook Song on 20 Oct 2022 187 bytes Easy: Add solutions for three exercises
#if !defined(HEXADECIMAL_H)
#define HEXADECIMAL_H

#include <string>

namespace hexadecimal {
int convert(const std::string hexstr);
}  // namespace hexadecimal

#endif  // HEXADECIMAL_H