exercism-solutions/cpp/trinary/trinary.h

11 lines
131 B
C++

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