exercism-solutions/cpp/hexadecimal/hexadecimal.h

11 lines
132 B
C++

#pragma once
#define EXERCISM_RUN_ALL_TESTS
#include <string>
namespace hexadecimal {
int convert(const std::string &input);
}