exercism-solutions/cpp/binary/binary.h

11 lines
130 B
C++

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