Newer
Older
exercism-cpp / secret-handshake / secret_handshake.h
#if !defined(SECRET_HANDSHAKE_H)
#define SECRET_HANDSHAKE_H

#include <string>
#include <vector>

namespace secret_handshake {
std::vector<std::string> commands(const int c);
}  // namespace secret_handshake

#endif  // SECRET_HANDSHAKE_H