#ifndef CRACKLIB_HPP #define CRACKLIB_HPP #include typedef struct PasswordCheck { bool ok; std::string msg; } PasswordCheck; PasswordCheck checkPassword( const std::string login, const std::string name, const std::string password ); #endif