11 lines
132 B
C++
11 lines
132 B
C++
#pragma once
|
|
|
|
#define EXERCISM_RUN_ALL_TESTS
|
|
|
|
#include <string>
|
|
|
|
namespace hexadecimal {
|
|
|
|
int convert(const std::string &input);
|
|
|
|
}
|