Newer
Older
exercism-cpp / atbash-cipher / atbash_cipher.h
@Wook Song Wook Song on 24 Oct 2022 246 bytes Easy: Add a solution for "Atbash Cipher"
#if !defined(ATBASH_CIPHER_H)
#define ATBASH_CIPHER_H

#include <string>

namespace atbash_cipher {
std::string encode(const std::string raw);
std::string decode(const std::string encoded);
} // namespace atbash_cipher

#endif // ATBASH_CIPHER_H